Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add saved card token test | //
// SavedCardToken.swift
// MercadoPagoSDK
//
// Created by Maria cristina rodriguez on 1/3/16.
// Copyright © 2016 MercadoPago. All rights reserved.
//
import XCTest
@testable import MercadoPagoSDKV4
class SavedCardTokenTest: BaseTest {
let card = MockBuilder.buildCard()
func testInit() {
let ... | |
Add StartViewController for initial screen | //
// COBStartViewController.swift
// CallOfBeacons
//
// Created by Stanisław Chmiela on 04.06.2016.
// Copyright © 2016 Stanisław Chmiela, Rafał Żelazko. All rights reserved.
//
import UIKit
class COBStartViewController: UIViewController, UITextFieldDelegate {
@IBOutlet weak var nickTextField: UITextField!
... | |
Create protocol and struct to represent API parameters | //
// ApiParameter.swift
// GithubClient
//
// Created by Eduardo Arenas on 8/5/17.
// Copyright © 2017 GameChanger. All rights reserved.
//
import Foundation
public protocol ApiParameter {
var name: String { get }
var value: CustomStringConvertible { get }
}
extension ApiParameter where Self: RawRepresentab... | |
Add user defaults + deviceID | import Foundation
extension UserDefaults {
private enum Keys {
static let deviceID = "ud_device_id_b8cb6644-43fa-4bc4-a4f3-23f9e5d25c8f"
}
public var deviceID: String {
if let result = string(forKey: Keys.deviceID) {
return result
}
let newDeviceID ... | |
Add test for preserving options in .swiftinterfaces | // RUN: %target-swift-frontend -enable-resilience -emit-parseable-module-interface-path %t.swiftinterface -module-name t %s -emit-module -o /dev/null
// RUN: %FileCheck %s < %t.swiftinterface -check-prefix=CHECK-SWIFTINTERFACE
//
// CHECK-SWIFTINTERFACE: {{swift-module-flags:.* -enable-resilience}}
public func foo() {... | |
Add bookmark place number to bookmark |
// FightingFantasy
// Created by Tony Smith on 10/30/17.
// Copyright © 2017 Tony Smith. All rights reserved.
import Cocoa
class FFBookmarkView: FFImageView {
var place: Int = -1
override func awakeFromNib() {
place = -1
}
override func draw(_ dirtyRect: NSRect) {
super.draw... | |
Add a solution to Island Perimeter | /**
* Question Link: https://leetcode.com/problems/island-perimeter/
* Primary idea: Go through the matrix and check right and down neighbors.
* Time Complexity: O(nm), Space Complexity: O(1)
*
*/
class IslandPerimeter {
func islandPerimeter(_ grid: [[Int]]) -> Int {
var islands = 0, neighbors = 0
... | |
Add test case for crash triggered in swift::ConformanceLookupTable::expandImpliedConformances(swift::NominalTypeDecl*, swift::DeclContext*, swift::LazyResolver*) | // RUN: not --crash %target-swift-frontend %s -parse
// REQUIRES: asserts
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
protocol A:A
protocol a:A
struct c:a{
let h=D
| |
Add test case for crash triggered in swift::IterativeTypeChecker::processTypeCheckSuperclass(swift::ClassDecl*, llvm::function_ref<bool (swift::TypeCheckRequest)>) | // RUN: not --crash %target-swift-ide-test -code-completion -code-completion-token=A -source-filename=%s
// REQUIRES: asserts
enum A<h{
class a
protocol c{{
}func b
#^A^#
class b<T:e>:a
{}class e | |
Add a button for the titlebar able to change its appearance on mouse over |
// FightingFantasy
// Created by Tony Smith on 10/30/17.
// Copyright © 2017 Tony Smith. All rights reserved.
import Cocoa
class FFBookmarkButton: NSButton {
var bookmarkState: Bool = false
var trackingArea: NSTrackingArea? = nil
override func awakeFromNib() {
// When the button is loaded... | |
Add test case for crash triggered in swift::GenericSignature::getArchetypeBuilder(swift::ModuleDecl&) | // RUN: not --crash %target-swift-ide-test -code-completion -code-completion-token=A -source-filename=%s
// REQUIRES: asserts
func b<T{#^A^#let t:T | |
Add a regression test for rdar://problem/56700017 | // RUN: %target-swift-frontend -typecheck %s
extension Sequence {
func sorted<T: Comparable, K: KeyPath<Element, T>>(by keyPath: K) -> Array<Element> {
self.sorted { $0[keyPath:keyPath] < $1[keyPath:keyPath] }
}
}
struct Foo {
let a: Int
}
func main() {
print([Foo(a: 2), Foo(a:1), Foo(a:4), F... | |
Add a regression test for SR-8469 / rdar://43888895 | // RUN: %target-swift-frontend -emit-ir %s
final class Baz {}
final class Bar {
private let x: Baz
init(x: Baz) {
self.x = x
}
}
final class Foo {
private var bar: Bar?
private func navigate(with baz: Baz?) {
bar = nil
guard let baz = baz else { return }
let bar =... | |
Add pulsing circle animation view | //
// PulsingCircle.swift
// Ello
//
// Created by Sean on 2/2/15.
// Copyright (c) 2015 Ello. All rights reserved.
//
import UIKit
import QuartzCore
class PulsingCircle: UIView {
private var circle:UIView?
func stopPulse() {
if let circle = circle {
circle.layer.removeAllAnimati... | |
Add test case for crash triggered in swift::Expr::walk(swift::ASTWalker&) | // RUN: not --crash %target-swift-frontend %s -parse
// REQUIRES: asserts
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
{{{l->Void in{
| |
Add test case for crash triggered in swift::Expr::walk(swift::ASTWalker&) | // This source file is part of the Swift.org open source project
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list... | |
Add test case for crash triggered in swift::TypeBase::getDesugaredType() | // RUN: not --crash %target-swift-frontend %s -parse
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
class a{protocol P{typealias e:d:let a}var d={class b:P
| |
Remove Core Data from App Delegate | //
// AppDelegate.swift
// CurrencyConverter
//
// Created by Jaikumar Bhambhwani on 4/25/15.
// Copyright (c) 2015 Jaikumar Bhambhwani. All rights reserved.
//
import UIKit
import CoreData
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application... | |
Add test case for crash triggered in swift::Type::transform(std::function<swift::Type (swift::Type)> const&) const | // RUN: not --crash %target-swift-frontend %s -parse
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
class B<T{class b<h:B<T.b>{func b{b
| |
Create a helper to create filename, data lenght and mimetype | //
// UploadHelper.swift
// Rocket.Chat
//
// Created by Rafael Kellermann Streit on 09/08/17.
// Copyright © 2017 Rocket.Chat. All rights reserved.
//
import Foundation
| |
Add test case for crash triggered in swift::TypeChecker::resolveTypeInContext(swift::TypeDecl*, swift::DeclContext*, swift::OptionSet<swift::TypeResolutionFlags, unsigned int>, bool, swift::GenericTypeResolver*, llvm::function_ref<bool (swift::TypeCheckRequest)>*) | // RUN: not --crash %target-swift-ide-test -code-completion -code-completion-token=A -source-filename=%s
// REQUIRES: asserts
A{extension{
class A{func c
var d=c let t{#^A^#
| |
Update test to reflect that write doesn't erroneously append newline | import files;
import assert;
// Test redirection
// Loop string through file
(string o) id (string i) {
o = read(cat(write(i)));
}
app (file out) cat (file inp) {
"/bin/cat" @stdin=inp @stdout=out;
}
main () {
foreach s in ["one", "two", "three", "four"] {
string s2 = id(s);
assertEqual(s2, s + "\n", ... | import files;
import assert;
// Test redirection
// Loop string through file
(string o) id (string i) {
o = read(cat(write(i)));
}
app (file out) cat (file inp) {
"/bin/cat" @stdin=inp @stdout=out;
}
main () {
foreach s in ["one", "two", "three", "four"] {
string s2 = id(s);
assertEqual(s2, s, "'" + s... |
Disable all popen related tests | /*
This source file is part of the Swift.org open source project
Copyright 2015 - 2016 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for Swift project author... | /*
This source file is part of the Swift.org open source project
Copyright 2015 - 2016 Apple Inc. and the Swift project authors
Licensed under Apache License v2.0 with Runtime Library Exception
See http://swift.org/LICENSE.txt for license information
See http://swift.org/CONTRIBUTORS.txt for Swift project author... |
Add tests of URL.resourceBytes and URL.lines. | // --- stubs ---
struct URL {
init?(string: String) {}
struct AsyncBytes : AsyncSequence, AsyncIteratorProtocol {
typealias Element = UInt8
func makeAsyncIterator() -> AsyncBytes {
return AsyncBytes()
}
mutating func next() async -> Element? { return nil }
var lines: AsyncLineSequence<Self> {
get... | |
Add test case for crash triggered in swift::constraints::Solution::coerceToType(swift::Expr*, swift::Type, swift::constraints::ConstraintLocator*, bool) const | // This source file is part of the Swift.org open source project
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list... | |
Add 💥 (😢 → 57, 😀 → 5107) in swift::ConformanceLookupTable::lookupConformances(…) | // This source file is part of the Swift.org open source project
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list... | |
Add test case for completing in `inout` arguments | // RUN: %empty-directory(%t)
// RUN: %target-swift-ide-test -batch-code-completion -source-filename %s -filecheck %raw-FileCheck -completion-output-dir %t
struct Bar() {
init?(withInout: inout Int) {}
init?(withPointer: UnsafePointer<Int>) {}
}
struct Foo {
var myInt: Int
func bar() {
let con... | |
Add test case for crash triggered in swift::PrintOptions::setArchetypeAndDynamicSelfTransform(swift::Type, swift::DeclContext*) | // RUN: not --crash %target-swift-ide-test -code-completion -code-completion-token=A -source-filename=%s
// REQUIRES: asserts
{protocol b{func a#^A^#enum S<T>:b | |
Add negative test for SR-12548. | // RUN: not %target-build-swift -O %s
// SR-12548: SIL verification error regarding
// `CapturePropagation::rewritePartialApply` for `partial_apply` with
// `@convention(method)` callee.
import _Differentiation
protocol Protocol: Differentiable {
@differentiable
func method() -> Self
}
extension Protocol {
@d... | |
Add a solution to Course Schedule | /**
* Question Link: https://leetcode.com/problems/course-schedule/
* Primary idea: Kahn's Algorithms
* 1) Create the graph
* 2) Decorate each vertex with its in-degree
* 3) Create a set of all sources
* 4) While the set isn’t empty,
* i. Remove a vertex from the set and add it to the sorted list
* ii. ... | |
Add leftwise flatMap operator for Decoded | /**
flatMap a function over a `Decoded` value (right associative)
- If the value is a failing case (`.TypeMismatch`, `.MissingKey`), the function will not be evaluated and this will return the value
- If the value is `.Success`, the function will be applied to the unwrapped value
- parameter x: A value of typ... | /**
flatMap a function over a `Decoded` value (right associative)
- If the value is a failing case (`.TypeMismatch`, `.MissingKey`), the function will not be evaluated and this will return the value
- If the value is `.Success`, the function will be applied to the unwrapped value
- parameter x: A value of typ... |
Add test case for crash triggered in swift::GenericFunctionType::get(swift::GenericSignature*, swift::Type, swift::Type, swift::AnyFunctionType::ExtInfo const&) | // RUN: not --crash %target-swift-ide-test -code-completion -code-completion-token=A -source-filename=%s
// REQUIRES: asserts
extension{enum a<H{enum b{case
func a(=#^A^#
| |
Add no-longer-crashing test case from rdar://problem/35441779. | // RUN: not %target-typecheck-verify-swift
class Q {
var z: Q.z
init () {
// FIXME: Per rdar://problem/35469647, this should be well-formed, but
// it's no longer crashing the compiler.
z = Q.z.M
}
enum z: Int {
case M = 1
}
}
| |
Add test case for rdar://71566576 | // RUN: %swift-ide-test -code-completion -code-completion-token=COMPLETE -source-filename %s
if let item = ["a"].first(where: { #^COMPLETE^# }) {}
| |
Add a runtime test for Objective-C class namespacing. | // RUN: rm -rf %t && mkdir %t
// RUN: %target-build-swift -module-name MangleTest -enable-objc-mangling %s -o %t/a.out
// RUN: %target-run %t/a.out | FileCheck %s
import Foundation
/* FIXME: SwiftObject doesn't support -description
class Foo { }
var anyFoo: AnyObject = Foo()
println(anyFoo.description())
@objc clas... | |
Add test case for crash triggered in swift::TypeChecker::getTypeOfRValue(swift::ValueDecl*, bool) | // RUN: not --crash %target-swift-frontend %s -parse
// REQUIRES: asserts
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
struct c{struct A:a{var d}let a=A{}protocol A
| |
Add test for @location and app functions | // Test app location dispatch
import assert;
import files;
import io;
import string;
import sys;
app (file o) hostname() {
"hostname" @stdout=o;
}
(string o) extract_hostname(file f) {
o = trim(readFile(f));
}
main {
foreach i in [1:100] {
string host1 = extract_hostname(hostname());
// Run on same ho... | |
Add 💥 case (😢 → 54, 😀 → 5095) triggered in swift::TypeChecker::addImplicitConstructors(…) | // This source file is part of the Swift.org open source project
// Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list... | |
Add test for flatMap deprecation message | // RUN: %target-typecheck-verify-swift %s
func flatMapOnSequence<
S : Sequence
>(xs: S, f: (S.Element) -> S.Element?) {
_ = xs.flatMap(f) // expected-warning {{deprecated}} expected-note {{filterMap}}
}
func flatMapOnLazySequence<
S : LazySequenceProtocol
>(xs: S, f: (S.Element) -> S.Element?) {
_ = xs.flatMa... | |
Test that missing dependencies cause a rebuild | // RUN: %empty-directory(%t/ModuleCache)
// RUN: %empty-directory(%t/Build)
// 1. Create a dummy module
// RUN: echo 'public func publicFunction() {}' > %t/TestModule.swift
// 2. Create both an interface and a compiled module for it
// RUN: %target-swift-frontend -emit-module -o %t/Build/TestModule.swiftmodule %t/Tes... | |
Add a testcase for arithmetic traps in optimized code. | // RUN: %swift -O -target x86_64-apple-macosx10.9 -primary-file %s -emit-ir -g -o - | FileCheck %s
// CHECK: define{{.*}}2fn
func fn() {
println("two")
println(0 - UInt(Process.arguments.count))
println("three")
}
// All traps should be coalesced at the end.
// CHECK: ret
// CHECK-NOT: }
// CHECK: tail call void... | |
Add test case for crash triggered in swift::TypeChecker::validateDecl(swift::ValueDecl*, bool) | // RUN: not --crash %target-swift-frontend %s -parse
// REQUIRES: asserts
// Distributed under the terms of the MIT license
// Test case submitted to project by https://github.com/practicalswift (practicalswift)
// Test case found by fuzzing
class B<T:B{class B<class b{}func b(T.B
| |
Add regression test for a bug that's already been fixed | // RUN: %target-swift-frontend %s -emit-ir
enum Term<S> where S: Sequence, S.Iterator.Element == Term {
case Cons(head: String, tail: S)
}
func produce<S>(s: S) -> Term<S> {
return .Cons(head: "hi", tail: s)
}
| |
Add a test that we don't crash when someone imports "Swift" instead of "swift". | // RUN: not %swift %s -parse
// RUN: not %swift -parse-stdlib %s -parse
// Just don't crash when accidentally importing "Swift" instead of "swift".
import Swift
print("hi")
Swift.print("hi")
| |
Move save action into another extension. | //
// LTVPNConfigViewController+Save.swift
// VPNOn
//
// Created by Lex on 1/23/15.
// Copyright (c) 2015 LexTang.com. All rights reserved.
//
import UIKit
import VPNOnKit
extension LTVPNConfigViewController
{
@IBAction func saveVPN(sender: AnyObject) {
if let currentVPN = vpn {
currentVP... | |
Split out interpreter part of autolinking test. | // RUN: rm -rf %t
// RUN: mkdir %t
// RUN: %swift -emit-module -parse-stdlib -o %t -module-name someModule -module-link-name module %S/../Inputs/empty.swift
// RUN: not %swift -i -lmagic %s -I=%t 2>&1 | FileCheck %s
// REQUIRES: swift_interpreter
import someModule
// CHECK-DAG: error: could not load shared library 'l... | |
Test that Branches produces a type. | // Copyright © 2015 Rob Rix. All rights reserved.
final class TagTests: XCTestCase {
func testTagTypechecksAsFunction() {
let expected = Expression.FunctionType([ Term("Enumeration"), Term(.Type(0)) ])
let actual = Term("Tag").out.typecheck(context, against: expected)
assert(actual.left, ==, nil)
assert(actu... | // Copyright © 2015 Rob Rix. All rights reserved.
final class TagTests: XCTestCase {
func testTagTypechecksAsFunction() {
let expected = Expression.FunctionType([ Term("Enumeration"), Term(.Type(0)) ])
let actual = Term("Tag").out.typecheck(context, against: expected)
assert(actual.left, ==, nil)
assert(actu... |
Add tests for `split_by_char` functions | module string_utils_unit_test;
import svunit_pkg::*;
`include "svunit_defines.svh"
string name = "string_utils_ut";
svunit_testcase svunit_ut;
import svunit_under_test::string_utils;
function void build();
svunit_ut = new(name);
endfunction
task setup();
svunit_ut.setup();
endtask
t... | module string_utils_unit_test;
import svunit_pkg::*;
`include "svunit_defines.svh"
string name = "string_utils_ut";
svunit_testcase svunit_ut;
import svunit_under_test::string_utils;
function void build();
svunit_ut = new(name);
endfunction
task setup();
svunit_ut.setup();
endtask
t... |
Add example with usage of `FAIL_IF_EQUAL` |
module equals_macros_example_unit_test;
import svunit_pkg::svunit_testcase;
`include "svunit_defines.svh"
string name = "equals_macros_example_ut";
svunit_testcase svunit_ut;
function void build();
svunit_ut = new(name);
endfunction
task setup();
svunit_ut.setup();
endtask
task teardo... |
module equals_macros_example_unit_test;
import svunit_pkg::svunit_testcase;
`include "svunit_defines.svh"
string name = "equals_macros_example_ut";
svunit_testcase svunit_ut;
function void build();
svunit_ut = new(name);
endfunction
task setup();
svunit_ut.setup();
endtask
task teardo... |
Add examples with usage of `FAIL_UNLESS_EQUAL` |
module equals_macros_example_unit_test;
import svunit_pkg::svunit_testcase;
`include "svunit_defines.svh"
string name = "equals_macros_example_ut";
svunit_testcase svunit_ut;
function void build();
svunit_ut = new(name);
endfunction
task setup();
svunit_ut.setup();
endtask
task teardo... | |
Downgrade an error to a warning | # Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# This file sets common message configurations for all JasperGold tcl files.
# Save debug effort to escalate the following error messages
# Error out on use of undeclared ... | # Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
# This file sets common message configurations for all JasperGold tcl files.
# Save debug effort to escalate the following error messages
# Error out on use of undeclared ... |
Add timestamp for bitstream identification via USR_ACCESS reg | # Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
set workroot [file dirname [info script]]
send_msg "Designcheck 1-1" INFO "Checking design"
# Ensure the design meets timing
set slack_ns [get_property SLACK [get_timing_... | # Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
set workroot [file dirname [info script]]
send_msg "Designcheck 1-1" INFO "Checking design"
# Ensure the design meets timing
set slack_ns [get_property SLACK [get_timing_... |
Fix the test for tiff reader to use same image as jpeg test | package require vtk
# Image pipeline
vtkImageReader2Factory createReader
set reader [createReader CreateImageReader2 "$VTK_DATA_ROOT/Data/libtiff/test.tif"]
$reader SetFileName "$VTK_DATA_ROOT/Data/libtiff/test.tif"
vtkImageViewer viewer
viewer SetInput [$reader GetOutput]
viewer SetColorWindow 256
viewer SetColorLe... | package require vtk
# Image pipeline
vtkImageReader2Factory createReader
set reader [createReader CreateImageReader2 "$VTK_DATA_ROOT/Data/beach.tif"]
$reader SetFileName "$VTK_DATA_ROOT/Data/beach.tif"
vtkImageViewer viewer
viewer SetInput [$reader GetOutput]
viewer SetColorWindow 256
viewer SetColorLevel 127.5
#m... |
Fix remoterc.tmp not being deleted once unneeded. | # Converse of acctinfo.tcl --- saves a section of abendstern.rc
# to the server.
if {"" != $::abnet::userid} {
$ create remoterc.tmp remote
$ add remote hud STGroup
$ add remote control_scheme STString
$ add remote ship_colour STArray
$ add remote camera STGroup
$ add remote default_share_ships STBool
fo... | # Converse of acctinfo.tcl --- saves a section of abendstern.rc
# to the server.
if {"" != $::abnet::userid} {
$ create remoterc.tmp remote
$ add remote hud STGroup
$ add remote control_scheme STString
$ add remote ship_colour STArray
$ add remote camera STGroup
$ add remote default_share_ships STBool
fo... |
Return a non-zero exit code if any example fails. | namespace eval Spec {
nx::Class create Runner {
:public class method autorun {} {
if { [:installed_at_exit?] } {
return
}
set :installed_at_exit true
at_exit { exit [::Spec::Runner run] }
}
:public class method run {} {
... | namespace eval Spec {
nx::Class create Runner {
:public class method autorun {} {
if { [:installed_at_exit?] } {
return
}
set :installed_at_exit true
at_exit { exit [::Spec::Runner run] }
}
:public class method run {} {
... |
Create a B using clipping | catch {load vtktcl}
# get the interactor ui
source vtkInt.tcl
# and some nice colors
source colors.tcl
# Now create the RenderWindow, Renderer and Interactor
#
vtkRenderer ren1
vtkRenderWindow renWin
renWin AddRenderer ren1
vtkRenderWindowInteractor iren
iren SetRenderWindow renWin
vtkPNMReader image
image... | |
Test of vtkGeometryFilter use of ghost cells. | # This scripts tests a couple of things.
# Images generating ghost level arrays,
# and geometry correctly processing ghost cells.
# It asks for a piece from a geometry filter with an image data input.
catch {load vtktcl}
if { [catch {set VTK_TCL $env(VTK_TCL)}] != 0} { set VTK_TCL "../../examplesTcl" }
if { [catch {se... | |
Remove list of tables and figures There's no tables or figures in the document | \input{../../common/style/global.tex}
\input{../../common/style/layout.tex}
\input{res/local}
\title{\textbf{Norme di Progetto}}
\author{BugBuster}
\date{23 Maggio 2016}
\begin{document}
%\maketitle
\makeFrontPage
\tableofcontents
\listoffigures
\listoftables
\include{res/versions}
\include{res/listOfSections}
... | \input{../../common/style/global.tex}
\input{../../common/style/layout.tex}
\input{res/local}
\title{\textbf{Norme di Progetto}}
\author{BugBuster}
\date{23 Maggio 2016}
\begin{document}
%\maketitle
\makeFrontPage
\tableofcontents
%\listoffigures
%\listoftables
\include{res/versions}
\include{res/listOfSections}... |
Move platform before research IDE | \documentclass[12pt]{report}
\usepackage{mystyle}
\usepackage{subfiles}
\begin{document}
\subfile{./tex/front-matter}
\subfile{./tex/introduction}
\subfile{./tex/engineering}
\subfile{./tex/background}
\subfile{./tex/prototypes}
\subfile{./tex/case-study-fourth-year-system}
\subfile{./tex/case-study-research-ide}
\s... | \documentclass[12pt]{report}
\usepackage{mystyle}
\usepackage{subfiles}
\begin{document}
\subfile{./tex/front-matter}
\subfile{./tex/introduction}
\subfile{./tex/engineering}
\subfile{./tex/background}
\subfile{./tex/prototypes}
\subfile{./tex/case-study-fourth-year-system}
\subfile{./tex/platform}
\subfile{./tex/ca... |
Add specification of class NODE. | \chapter{Binary trees}
\label{chap-binary-trees}
| \chapter{Binary trees}
\label{chap-binary-trees}
\Defclass {node}
This class is the base class for all node types in binary trees.
|
Use small caps in title. | @article{bank1985transient,
title={Transient simulation of silicon devices and circuits},
author={Bank, Randolph E and Coughran, William M and Fichtner, Wolfgang and
Grosse, Eric H and Rose, Donald J and Smith, R Kent},
journal={IEEE Transactions on Computer-Aided Design of Integrated Circuits
and... | @article{bank1985transient,
title={Transient simulation of silicon devices and circuits},
author={Bank, Randolph E and Coughran, William M and Fichtner, Wolfgang and
Grosse, Eric H and Rose, Donald J and Smith, R Kent},
journal={IEEE Transactions on Computer-Aided Design of Integrated Circuits
and... |
Update in the use case Hugin Link | \newpage
\section{Use Case - Hugin Link (HL)}
\label{UseCase:HL}
\begin{description}
\item[Priority:] Must
\item[Deadline:] M15
\item[Responsible:]
\end{description}
\subsubsection*{Description of the Use Case}
Enter a textual description of the use case. Link to other use cases or functionalities if needed.
\sub... | %!TEX root = ../MainDoc.tex
\newpage
\section{Use Case - Hugin Link (HL)}
\label{UseCase:HL}
\begin{description}
\item[Priority:] Must
\item[Deadline:] M15
\item[Responsible:] A. Fern\'andez
\end{description}
\subsubsection*{Description of the Use Case}
This use case contains all the functionality needed to link the... |
Add information for package nomenclature | \nomenclature{UART}{Universal Asynchronous Receiver Transmitter}
%\nomenclature{}{}
%\nomenclature{}{}
%\nomenclature{}{}
%\nomenclature{}{} | %Bei der Verwendung des Pakets nomenclature muss der Befehl makeindex ausgeführt werden, um das Abkürzungsverzeichnis zu aktualisieren.
%When using the package nomenclature, you have to execute the command makeindex to update the list of abbreviations.
%https://tex.stackexchange.com/questions/27824/using-package-nomenc... |
Fix typo and file extension in example tex template | \documentclass{article}
\usepackage[utf8]{inputenc}
\title{<%= project_name %>}
\author{<%= user.first_name %> <%= user.last_name %>}
\date{<%= month %> <%= year %>}
\usepackage{natbib}
\usepackage{graphicx}
\begin{document}
\maketitle
\section{Introduction}
There is a theory which states that if ever anyone disco... | \documentclass{article}
\usepackage[utf8]{inputenc}
\title{<%= project_name %>}
\author{<%= user.first_name %> <%= user.last_name %>}
\date{<%= month %> <%= year %>}
\usepackage{natbib}
\usepackage{graphicx}
\begin{document}
\maketitle
\section{Introduction}
There is a theory which states that if ever anyone disco... |
Replace MIR by HIR which is what the AST translates to. | \chapter{Translating AST to MIR}
\label{chap-translating-ast-to-mir}
The translation of an abstract syntax tree
\seechap{chap-abstract-syntax-tree} to medium-level intermediate
representation \seechap{chap-ir} is done by an algorithm that is
similar to that of CPS-conversion.%
\footnote{CPS means Continuation Passing ... | \chapter{Translating AST to HIR}
\label{chap-translating-ast-to-hir}
The translation of an abstract syntax tree
\seechap{chap-abstract-syntax-tree} to medium-level intermediate
representation \seechap{chap-ir} is done by an algorithm that is
similar to that of CPS-conversion.%
\footnote{CPS means Continuation Passing ... |
Add inclusion of amsmfonts package | \documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{hyperref}
\title{Fast set implementation based on a hybrid hashtable and AVL}
\author{
Julian Ganz\\
\and
Matthias Beyer\\
}
\begin{document}
\maketitle{}
\tableofcontents{}
... | \documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{hyperref}
\usepackage{amsfonts}
\title{Fast set implementation based on a hybrid hashtable and AVL}
\author{
Julian Ganz\\
\and
Matthias Beyer\\
}
\begin{document}
\maketitle{}
... |
Add explanation of bit counting algorithm | \section{Miscellaneous}
\label{sec:misc}
This section serves the purpose of documenting miscellaneous algorithms used
in the library.
| \section{Miscellaneous}
\label{sec:misc}
This section serves the purpose of documenting miscellaneous algorithms used
in the library.
\subsection{Bit counting algorithm}
\label{sec:misc-bitcount}
A classical way of counting bits set in an integer is to perform shifts
to the right, re... |
Add information to our app slide | \begin{frame}
\frametitle{Nasze rozwiązanie --- dla end-usera}
\begin{columns}[c]
\begin{column}{.45\textwidth}
\begin{enumerate}
\item \todo{Że na Androida.}
\item \todo{Że import.}
\item \todo{Że synchronizacja online i offline.}
\item \todo{Że banalne w obsłudze --- genialny UX!}
\end{enumerate}
\end{colum... | \begin{frame}
\frametitle{Nasze rozwiązanie --- dla end-usera}
\begin{columns}[c]
\begin{column}{.45\textwidth}
\begin{enumerate}
\item Android
\item Kompatybilność z formatem programu XMind
\item Kolaboracja online
\item Synchronizacja offline
\item Intuicyjny interfejs użytkownika
\end{enumerate}
\end... |
Hide colored borders around hyperlinks | \NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{custommacros}[2017/10/16 v0.1 Custom macros and helpers]
\RequirePackage{xcolor}
\RequirePackage{graphicx}
\RequirePackage{hyperref}
\RequirePackage{xparse}
\newcommand{\todo}[1][To be updated later!]{{\color{red} TODO: {#1}}}
\makeatletter
\def\app@exe{\immediate\write18}
\... | \NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{custommacros}[2017/10/16 v0.1 Custom macros and helpers]
\RequirePackage{xcolor}
\RequirePackage{graphicx}
\RequirePackage[hidelinks]{hyperref}
\RequirePackage{xparse}
\newcommand{\todo}[1][To be updated later!]{{\color{red} TODO: {#1}}}
\makeatletter
\def\app@exe{\immediate... |
Add paragraph with name of package and its location. | \chapter{Translating AST to HIR}
\label{chap-translating-ast-to-hir}
The translation of an abstract syntax tree
\seechap{chap-abstract-syntax-tree} to high-level intermediate
representation \seechap{chap-ir} is done by an algorithm that is
similar to that of CPS-conversion.%
\footnote{CPS means Continuation Passing St... | \chapter{Translating AST to HIR}
\label{chap-translating-ast-to-hir}
The translation of an abstract syntax tree
\seechap{chap-abstract-syntax-tree} to high-level intermediate
representation \seechap{chap-ir} is done by an algorithm that is
similar to that of CPS-conversion.%
\footnote{CPS means Continuation Passing St... |
Decrease margin size for x3-assignment, was a bit too wide | \documentclass[a4paper,ngerman]{article}
% General includes used by all x3-templates
\input{x3-general-preamble}
% Make it possible to enable or disable TOC
\newif\ifShowTOC
| \documentclass[a4paper,ngerman]{article}
\usepackage{geometry}
\geometry{
top=1.5in,
inner=1.5in,
outer=1.5in,
bottom=1.5in,
headheight=3ex,
headsep=3ex
}
% General includes used by all x3-templates
\input{x3-general-preamble}
% Make it possible to enable or disable TOC
\newif\ifShowTOC
|
Add X-ExtraFiles key to list extra files | ## Interface: 30000
## Title: TradeCD
## Notes: LibDataBroker for tradeskill cooldowns
## Author: David M. Cooke
## X-Email: david.m.cooke@gmail.com
## Version: 1.0
## X-Category: Tradeskill
## SavedVariables: TradeCD_DB
# embedded libraries
LibStub.lua
CallbackHandler-1.0.lua
LibDataBroker-1.1.lua
base.lua
debug.lua... | ## Interface: 30000
## Title: TradeCD
## Notes: LibDataBroker for tradeskill cooldowns
## Author: David M. Cooke
## X-Email: david.m.cooke@gmail.com
## Version: 1.0
## X-Category: Tradeskill
## SavedVariables: TradeCD_DB
# embedded libraries
LibStub.lua
CallbackHandler-1.0.lua
LibDataBroker-1.1.lua
base.lua
debug.lua... |
Set paper size to A4 | \documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage{ngerman}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage[space]{grffile}
\newcommand*{\R}{\mathbb{R}}
\newcommand*{\N}{\mathbb{N}}
\newcommand*{\Z}{\mathbb{Z}}
\newcommand*{\Q}{\mathbb{Q}}
\newcommand*{\C}{\... | \documentclass[a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{ngerman}
\usepackage[a4paper]{geometry}
\usepackage{graphicx}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{booktabs}
\usepackage[space]{grffile}
\newcommand*{\R}{\mathbb{R}}
\newcommand*{\N}{\mathbb{N}}
\newcommand*{\Z}{\mathbb{Z}}
\newcom... |
Update in the use case Hugin Link | \newpage
\section{Use Case - Hugin Link (HL)}
\label{UseCase:HL}
\begin{description}
\item[Priority:] Must
\item[Deadline:] M15
\item[Responsible:]
\end{description}
\subsubsection*{Description of the Use Case}
Enter a textual description of the use case. Link to other use cases or functionalities if needed.
\sub... | %!TEX root = ../MainDoc.tex
\newpage
\section{Use Case - Hugin Link (HL)}
\label{UseCase:HL}
\begin{description}
\item[Priority:] Must
\item[Deadline:] M15
\item[Responsible:] A. Fern\'andez
\end{description}
\subsubsection*{Description of the Use Case}
This use case contains all the functionality needed to link the... |
Add pandoc template for tccv | \documentclass[fontsize=10pt]{tccv}
\usepackage[english]{babel}
\begin{document}
\part{$basics.name$}
\section{Select work experience}
\begin{eventlist}
$for(work)$
\item{$work.startDate$ -- $if(work.endDate)$$work.endDate$$else$Present$endif$}
{\href{$work.website$}{$work.company$}}
{$work.position$}
$wor... | |
Add first bits of user guide | \chapter{User Guide}
\label{chap:Guide}
| \chapter{User Guide}
\label{chap:Guide}
Welcome to Viskell!
Viskell is a tool to experiment with the Haskell programming language in a visual and playful way.
You don't need to be a Haskell expert to use Viskell: this User Guide will tell you everything you know to get started.
\textbf{Squares!}
First, we're building... |
Add JFET part number to schematic 4. | \begin{circuitikz}
\draw(0,0) node[njfet,yscale=-1] (fet) {};
\draw(fet.gate) |- (fet.drain);
\draw(fet.source) to [vR, l_=Decade Box, mirror] ++(0,2)
to [short] ++(1,0)
to [ammeter] ++(0,-2) node[] (end) {};
\draw(fet.drain) to [short] ++(1,0)
to [V, l_=\SI{16}{\volt}DC \& \SI{32}{\volt}DC] ++(0, 2)
to [short]... | \begin{circuitikz}
\draw(0,0) node[njfet,yscale=-1] (fet) {};
\draw(fet.gate) |- (fet.drain);
\draw(fet.source) to [vR, l_=Decade Box, mirror] ++(0,2)
to [short] ++(1,0)
to [ammeter] ++(0,-2) node[] (end) {};
\draw(fet.drain) to [short] ++(1,0)
to [V, l_=\SI{16}{\volt}DC \& \SI{32}{\volt}DC] ++(0, 2)
to [short]... |
Adjust paper margins for more space | \documentclass[a4paper,twoside]{article}
\usepackage[
hmarginratio=1:1,
top=32mm,
columnsep=20pt,
footnotesep=1cm
]{geometry}
\input{x3-general-preamble}
| \documentclass[a4paper,twoside]{article}
\usepackage[
hmarginratio=1:1,
top=25mm,
bottom=25mm,
columnsep=20pt,
footnotesep=1cm,
left=25mm
]{geometry}
\input{x3-general-preamble}
|
Add splitindex check to work around MiKTeX bug | %!TeX jobNames = job-1, job-2
%!TeX job-2:outputDirectory = output
\documentclass{article}
\usepackage{splitidx}
\makeindex
\newindex[Index of theories]{theories}
\newindex[Index of names]{persons}
\begin{document}
Special and General Relativity\sindex[theories]{relativity}...
Einstein\sindex[persons]{Einstein, Al... | %!TeX jobNames = job-1, job-2
%!TeX job-2:outputDirectory = output
%!TeX check = splitindex --version
\documentclass{article}
\usepackage{splitidx}
\makeindex
\newindex[Index of theories]{theories}
\newindex[Index of names]{persons}
\begin{document}
Special and General Relativity\sindex[theories]{relativity}...
Ei... |
Add test program to report | \chapter{Complete test program}
\label{chap:testprogram}
% TODO
\begin{lstlisting}
\end{lstlisting}
| \chapter{Complete test program}
\label{chap:testprogram}
\begin{landscape}
\begin{lstlisting}
City Enschede;
/** Correctly working program, still need to think of something to do with char. */
Begin depot;
Wagon a accepts int;
Wagon b accepts boolean;
Wagon c accepts char;
Wagon d accepts int;
End dep... |
Update the article information: title, author, etc ... | %!TEX root = ./article.tex
% Article Title
\def \ArticleTitle{Article Title}
% Author(s) Name(s)
\def \AuthorA{Author Name}
% Author(s) Email(s)
\def \AuthorAemail{EmailA}
% Institution(s) Name(s)
\def \InstitutionA{Institution Name}
% Article Title
\newcommand {\Title} {\ArticleTitle}
% Authors
\newcommand {\Aut... | %!TEX root = ./article.tex
% Article Title
\def \ArticleTitle{Cloud4Things}
% Author(s) Name(s)
\def \AuthorA{Marcus Vin\'icius Paulino Gomes}
% Author(s) Email(s)
\def \AuthorAemail{marcus.paulino.gomes@tecnico.ulisboa.pt}
% Institution(s) Name(s)
\def \InstitutionA{Instituto Superior T\'ecnico, Universidade de Li... |
Add a missing newline in a csv table [skip CI] | \begin{table}[htbp]
\centering
\begin{tabular}{cccccc}
\hline
\rowcolor{lightgray}
\textbf{rlzi} & \textbf{sid} & \textbf{eid} & \textbf{gmv\_PGA} & \textbf{gmv\_SA(0.3)} & \textbf{gmv\_SA(1.0)} \\
\hline
0 & 0 & 0 & 0.062 & 0.119 & 0.157 \\
0 & 1 & 0 & 0.086 & 1.533 & 0.260 \\
0 & 2 & 0 & 0.223 & 1.647 & 0.232 \\
...... | \begin{table}[htbp]
\centering
\begin{tabular}{cccccc}
\hline
\rowcolor{lightgray}
\textbf{rlzi} & \textbf{sid} & \textbf{eid} & \textbf{gmv\_PGA} & \textbf{gmv\_SA(0.3)} & \textbf{gmv\_SA(1.0)} \\
\hline
0 & 0 & 0 & 0.062 & 0.119 & 0.157 \\
0 & 1 & 0 & 0.086 & 1.533 & 0.260 \\
0 & 2 & 0 & 0.223 & 1.647 & 0.232 \\
...... |
Change order of author names | @InProceedings{rogers16,
supplementary = {Supplementary:rogers16-supp.pdf},
title = {Differentially Private Chi-Squared Hypothesis Testing: Goodness of Fit and Independence Testing},
author = {Ryan Rogers and Salil Vadhan and Hyun Lim and Marco Gaboardi},
pages = {2111-2120},
abstract = {Hypothesis testing is... | @InProceedings{rogers16,
supplementary = {Supplementary:rogers16-supp.pdf},
title = {Differentially Private Chi-Squared Hypothesis Testing: Goodness of Fit and Independence Testing},
author = {Marco Gaboardi and Hyun Lim and Ryan Rogers and Salil Vadhan},
pages = {2111-2120},
abstract = {Hypothesis testing is... |
Emphasize that the table is the break table. | \section{Conclusions and future work}
We have presented an improvement to the compacting and sliding
collector invented by Haddon and Waite \cite{Haddon:1967}. Our method
is an improvement in that it does not require the partially built
table to be moved, because the entire table is built \emph{after}
the compaction ... | \section{Conclusions and future work}
We have presented an improvement to the compacting and sliding
collector invented by Haddon and Waite \cite{Haddon:1967}. Our method
is an improvement in that it does not require the partially built
break table to be moved, because the entire table is built
\emph{after} the compa... |
Update botocore from 1.5.70 to 1.5.78 | aioamqp==0.10.0
aiobotocore==0.4.1
aiohttp==2.2.0
apipkg==1.4
appdirs==1.4.3
async-timeout==1.2.1
botocore==1.5.70
chardet==3.0.4
codecov==2.0.9
coverage==4.4.1
docutils==0.13.1
execnet==1.4.1
jmespath==0.9.3
multidict==3.1.0
mypy==0.511
packaging==16.8
pep8==1.7.0
py==1.4.34
pyparsing==2.2.0
pytest==3.1.2
pytest-cache... | aioamqp==0.10.0
aiobotocore==0.4.1
aiohttp==2.2.0
apipkg==1.4
appdirs==1.4.3
async-timeout==1.2.1
botocore==1.5.78
chardet==3.0.4
codecov==2.0.9
coverage==4.4.1
docutils==0.13.1
execnet==1.4.1
jmespath==0.9.3
multidict==3.1.0
mypy==0.511
packaging==16.8
pep8==1.7.0
py==1.4.34
pyparsing==2.2.0
pytest==3.1.2
pytest-cache... |
Include bumpversion in dev dependencies | alabaster==0.7.9
coverage==4.5.1
coverage_pth==0.0.2
codecov==2.0.15
flake8==3.5.0
mock==2.0.0
pypandoc==1.4
pytest==3.4.2
recommonmark==0.4.0
sphinxcontrib-spelling==4.1.0
Sphinx==1.7.1
tox==2.9.1
-r requirements.txt
| alabaster==0.7.9
bumpversion==0.5.3
coverage==4.5.1
coverage_pth==0.0.2
codecov==2.0.15
flake8==3.5.0
mock==2.0.0
pypandoc==1.4
pytest==3.4.2
recommonmark==0.4.0
sphinxcontrib-spelling==4.1.0
Sphinx==1.7.1
tox==2.9.1
-r requirements.txt
|
Update year to 2014. | Copyright 2013 The Dojo Foundation <http://dojofoundation.org/>
Based on Grunt-Lodashbuilder 0.1.7, copyright 2012 Sebastian Golasch
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 restric... | Copyright 2013-2014 The Dojo Foundation <http://dojofoundation.org/>
Based on Grunt-Lodashbuilder 0.1.7, copyright 2012 Sebastian Golasch
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 re... |
Fix package version of `typing` which chalice can not import | chalice==0.5.0
requests==2.12.1
boto3==1.4.1
pydash==3.4.7
pytz==2016.7
typing==3.5.3
enum34==1.1.6
owlmixin==1.0.0rc5
| chalice==0.5.0
requests==2.12.1
boto3==1.4.1
pydash==3.4.7
pytz==2016.7
typing==3.5.2.2
enum34==1.1.6
owlmixin==1.0.0rc5
|
Remove specfic version for pyfiglet | botocore
boto3>=1.4.3
pyfiglet==0.7.5
PyYAML==3.12
tabulate==0.7.5
yattag==1.7.2
| botocore
boto3>=1.4.3
pyfiglet
PyYAML==3.12
tabulate==0.7.5
yattag==1.7.2
|
Update ruamel.yaml from 0.15.61 to 0.15.64 | Twisted[tls]==18.7.0
beautifulsoup4==4.6.3
lxml==4.2.4
psutil==5.4.7
python-dateutil==2.7.3
ply==3.11
enum34==1.1.6
twitter==1.18.0
requests==2.19.1
pytimeparse==1.1.8
pymysql==0.9.2
pycryptodome==3.6.6
pyasn1==0.4.4
isodate==0.6.0
google-api-python-client==1.7.4
pyxDamerauLevenshtein==1.5
numpy==1.15.1
Cython==0.28.5
... | Twisted[tls]==18.7.0
beautifulsoup4==4.6.3
lxml==4.2.4
psutil==5.4.7
python-dateutil==2.7.3
ply==3.11
enum34==1.1.6
twitter==1.18.0
requests==2.19.1
pytimeparse==1.1.8
pymysql==0.9.2
pycryptodome==3.6.6
pyasn1==0.4.4
isodate==0.6.0
google-api-python-client==1.7.4
pyxDamerauLevenshtein==1.5
numpy==1.15.1
Cython==0.28.5
... |
Update pytest from 3.1.0 to 3.1.2 | bcrypt==3.1.3
coverage==4.4.1
cryptography==1.9
motor==1.1
pymongo==3.4.0
pytest==3.1.0
pytest-cov==2.5.1
tornado==4.5.1
| bcrypt==3.1.3
coverage==4.4.1
cryptography==1.9
motor==1.1
pymongo==3.4.0
pytest==3.1.2
pytest-cov==2.5.1
tornado==4.5.1
|
Change pgoapi to modify one | six==1.10.0
Flask==0.11.1
Jinja2==2.8
MarkupSafe==0.23
Werkzeug==0.11.10
configargparse==0.10.0
click==6.6
itsdangerous==0.24
peewee==2.8.1
wsgiref==0.1.2
geopy==1.11.0
s2sphere==0.2.4
gpsoauth==0.3.0
PyMySQL==0.7.5
flask-cors==2.1.2
flask-compress==1.3.0
LatLon==1.0.1
git+https://github.com/keyphact/pgoapi.git#egg=pgo... | six==1.10.0
Flask==0.11.1
Jinja2==2.8
MarkupSafe==0.23
Werkzeug==0.11.10
configargparse==0.10.0
click==6.6
itsdangerous==0.24
peewee==2.8.1
wsgiref==0.1.2
geopy==1.11.0
s2sphere==0.2.4
gpsoauth==0.3.0
PyMySQL==0.7.5
flask-cors==2.1.2
flask-compress==1.3.0
LatLon==1.0.1
git+https://github.com/DarkSwatcat/pgoapi.git#egg=... |
Revert "check if it handles python3.2 without requests version" | pyyaml==3.12
argcomplete==1.9.2
requests
pycodestyle==2.3.1
sphinx==1.6.5
sphinx-autobuild==0.7.1
packaging==16.8 | pyyaml==3.12
argcomplete==1.9.2
requests==2.18.4
pycodestyle==2.3.1
sphinx==1.6.5
sphinx-autobuild==0.7.1
packaging==16.8 |
Update lxml from 4.3.4 to 4.4.0 | dj-database-url==0.5.0
django-apiblueprint-view==2.1.0
django-basicauth==0.5.2
django-extensions==2.1.9
django-localflavor==2.2
django-markdown-deux==1.0.5
django==1.11.22 # pyup: >=1.11,<2.0
djangorestframework==3.10.1
djangorestframework-gis==0.14
django-cors-headers==3.0.2
fastkml==0.11
fuzzywuzzy==0.17.0
lxml==4.3... | dj-database-url==0.5.0
django-apiblueprint-view==2.1.0
django-basicauth==0.5.2
django-extensions==2.1.9
django-localflavor==2.2
django-markdown-deux==1.0.5
django==1.11.22 # pyup: >=1.11,<2.0
djangorestframework==3.10.1
djangorestframework-gis==0.14
django-cors-headers==3.0.2
fastkml==0.11
fuzzywuzzy==0.17.0
lxml==4.4... |
Update CV of AtmosphereLogger to 0.2.3 (9) | Categories:Science & Education
License:PublicDomain
Web Site:http://www.tamanegi.org/prog/android-apps
Source Code:https://github.com/lllllT/AtmosphereLogger
Issue Tracker:https://github.com/lllllT/AtmosphereLogger/issues
Auto Name:AtmosphereLogger
Summary:Logs atmospheric pressure
Description:
Logs atmospheric pressu... | Categories:Science & Education
License:PublicDomain
Web Site:http://www.tamanegi.org/prog/android-apps
Source Code:https://github.com/lllllT/AtmosphereLogger
Issue Tracker:https://github.com/lllllT/AtmosphereLogger/issues
Auto Name:AtmosphereLogger
Summary:Logs atmospheric pressure
Description:
Logs atmospheric pressu... |
Add again pycodestyle to dev requirements | setuptools
wheel==0.32.1
bumpversion==0.5.3
watchdog==0.9.0
tox==3.5.2
coverage==4.5.1
pytest
| setuptools
wheel==0.32.1
bumpversion==0.5.3
watchdog==0.9.0
tox==3.5.2
coverage==4.5.1
pytest
pycodestyle
|
Use find_package to find Boost | set(TEST_NAMES
test_traits
test_utility
test_value
test_to_toml
test_from_toml
test_get
test_value_operator
test_datetime
test_acceptor
test_parser
test_parse_file
)
CHECK_CXX_COMPILER_FLAG("-Wall" COMPILER_SUPPORTS_WALL)
CHECK_CXX_COMPILER_FLAG("-Wpedantic" COMPILER_SUP... | set(TEST_NAMES
test_traits
test_utility
test_value
test_to_toml
test_from_toml
test_get
test_value_operator
test_datetime
test_acceptor
test_parser
test_parse_file
)
CHECK_CXX_COMPILER_FLAG("-Wall" COMPILER_SUPPORTS_WALL)
CHECK_CXX_COMPILER_FLAG("-Wpedantic" COMPILER_SUP... |
Update dependency lxml to v4.6.1 | # Local development dependencies go here
-r base.txt
Sphinx==3.2.1
Werkzeug==1.0.1
django-debug-toolbar==3.1.1
ipdb==0.13.4
factory-boy==3.1.0
lxml==4.6.0
django-coverage-plugin==1.8.0
vcrpy==4.1.1
sphinxcontrib-programoutput==0.16
pre-commit==2.7.1
coveralls==2.1.2
| # Local development dependencies go here
-r base.txt
Sphinx==3.2.1
Werkzeug==1.0.1
django-debug-toolbar==3.1.1
ipdb==0.13.4
factory-boy==3.1.0
lxml==4.6.1
django-coverage-plugin==1.8.0
vcrpy==4.1.1
sphinxcontrib-programoutput==0.16
pre-commit==2.7.1
coveralls==2.1.2
|
Update tox from 2.3.1 to 3.15.2 | pip==20.1.1
bumpversion==0.6.0
wheel==0.34.2
watchdog==0.10.2
flake8==3.8.3
tox==2.3.1
coverage==4.1
Sphinx==1.4.8
cryptography==1.7
PyYAML==5.1
| pip==20.1.1
bumpversion==0.6.0
wheel==0.34.2
watchdog==0.10.2
flake8==3.8.3
tox==3.15.2
coverage==4.1
Sphinx==1.4.8
cryptography==1.7
PyYAML==5.1
|
Update pytest from 5.4.2 to 5.4.3 | # Packages required for running tests
-r pip.txt
django-dynamic-fixture==3.1.0
pytest==5.4.2
pytest-custom-exit-code==0.3.0
pytest-django==3.9.0
pytest-xdist==1.32.0
pytest-cov==2.8.1
apipkg==1.5
execnet==1.7.1
# Mercurial 4.3 and newer require Python 2.7
# Mercurial is actively being ported to Python 3. As of Mercu... | # Packages required for running tests
-r pip.txt
django-dynamic-fixture==3.1.0
pytest==5.4.3
pytest-custom-exit-code==0.3.0
pytest-django==3.9.0
pytest-xdist==1.32.0
pytest-cov==2.8.1
apipkg==1.5
execnet==1.7.1
# Mercurial 4.3 and newer require Python 2.7
# Mercurial is actively being ported to Python 3. As of Mercu... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.