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|>tests/Feature/SimpleRequestsTest.php.diff original: $response->assertStatus(200); updated: $this->assertEquals(200, $response->status(), 'Response content: '.$response->getContent()); // $response->assertStatus(200); <|file_sep|>original/tests/Feature/SimpleRequestsTest.php public...
$response = $this->get('/privacy'); $response->assertStatus(200); $response = $this->get('/attendance/kiosk'); $response->assertStatus(200); } /** * Test that the home page loads successfully. */ public function testHome(): void { $response = $this->ac...
<|file_sep|>tests/Feature/SimpleRequestsTest.php.diff original: $response->assertStatus(200); updated: $this->assertEquals(200, $response->status(), 'Response content: '.$response->getContent()); // $response->assertStatus(200); <|file_sep|>original/tests/Feature/SimpleRequestsTest.php public...
c3a9054d4ff3e82c95664004f42ee0d0e9561559
tests/Feature/SimpleRequestsTest.php
tests/Feature/SimpleRequestsTest.php
PHP
<|file_sep|>original/config/initializers/requires.rb require 'rubygems/format' require 'rubygems/indexer' require 'rdoc/markup/simple_markup' require 'rdoc/markup/simple_markup/to_html' require 'simple_ssl_requirement' require 'active_support/builder' <|file_sep|>current/config/initializers/requires.rb require 'rubygem...
require 'rubygems/format' require 'rubygems/indexer' require 'rdoc/markup' require 'rdoc/markup/to_html' require 'simple_ssl_requirement' require 'active_support/builder'
<|file_sep|>original/config/initializers/requires.rb require 'rubygems/format' require 'rubygems/indexer' require 'rdoc/markup/simple_markup' require 'rdoc/markup/simple_markup/to_html' require 'simple_ssl_requirement' require 'active_support/builder' <|file_sep|>current/config/initializers/requires.rb require 'rubygem...
5bcf4bf599c179a7ff8d82d25a855ebdb92b7786
config/initializers/requires.rb
config/initializers/requires.rb
Ruby
<|file_sep|>original/functional-tests/src/test/groovy/pages/app/HomePage.groovy package pages.app import geb.Page import extensions.ReactJSAware class HomePage extends Page implements ReactJSAware { static at = { reactReady && title == "MOTI Hired Equipment Tracking System" && $("h1", text: startsWith("Roland Ste...
package pages.app import geb.Page import extensions.ReactJSAware class HomePage extends Page implements ReactJSAware { static at = { reactReady && title == "MOTI Hired Equipment Tracking System" && $("#navbar-current-user > li > a", text: startsWith("Hets Test"))} static url = "?#/home" static content = ...
<|file_sep|>original/functional-tests/src/test/groovy/pages/app/HomePage.groovy package pages.app import geb.Page import extensions.ReactJSAware class HomePage extends Page implements ReactJSAware { static at = { reactReady && title == "MOTI Hired Equipment Tracking System" && $("h1", text: startsWith("Roland Ste...
e32f751f5d4586b00a22e6f71a7aa5d3e9b1eab8
functional-tests/src/test/groovy/pages/app/HomePage.groovy
functional-tests/src/test/groovy/pages/app/HomePage.groovy
Groovy
<|file_sep|>original/_config/task.local-server.js var taskConfig = { // Files to watch files: path.join(__dirname + '/..', projectConfig.dirs.dest), // Server config options server: { baseDir: path.join(__dirname + '/..', projectConfig.paths.dest.static_html), // directory: true, // directory listing ...
server: { baseDir: path.join(__dirname + '/..', projectConfig.paths.dest.static_html), // directory: true, // directory listing // index: "index.htm", // specific index filename }, ghostMode: false, // Mirror behaviour on all devices online: false, // Speed up startup time (When xip & tunnel aren't bei...
<|file_sep|>original/_config/task.local-server.js var taskConfig = { // Files to watch files: path.join(__dirname + '/..', projectConfig.dirs.dest), // Server config options server: { baseDir: path.join(__dirname + '/..', projectConfig.paths.dest.static_html), // directory: true, // directory listing ...
3cf2e5d0b6df1943b7201f360a2d7c88e5eeb81b
_config/task.local-server.js
_config/task.local-server.js
JavaScript
<|file_sep|>Casks/intellij-idea-ultimate-eap.rb.diff original: version '14-PublicPreview' sha256 '4995c98608506c02348b4dfc0507a6a791c9db0ee555916edfe2fef9aa2dc85a' updated: version '139.144.2' sha256 '49ef8ac753287031ae3ed604bbfd7a19e46359b318ac581db0a6100fb5ae0beb' <|file_sep|>original/Casks/intellij-idea-ulti...
class IntellijIdeaUltimateEap < Cask version '139.144.2' sha256 '49ef8ac753287031ae3ed604bbfd7a19e46359b318ac581db0a6100fb5ae0beb' url "http://download.jetbrains.com/idea/ideaIU-#{version}.dmg" homepage 'https://confluence.jetbrains.com/display/IDEADEV/IDEA+14+EAP' license :unknown app 'IntelliJ IDEA 14 E...
<|file_sep|>Casks/intellij-idea-ultimate-eap.rb.diff original: version '14-PublicPreview' sha256 '4995c98608506c02348b4dfc0507a6a791c9db0ee555916edfe2fef9aa2dc85a' updated: version '139.144.2' sha256 '49ef8ac753287031ae3ed604bbfd7a19e46359b318ac581db0a6100fb5ae0beb' <|file_sep|>original/Casks/intellij-idea-ulti...
cd88a6ad91bd7fd0ecdc03badd7cc09dd63e2873
Casks/intellij-idea-ultimate-eap.rb
Casks/intellij-idea-ultimate-eap.rb
Ruby
<|file_sep|>original/lib/wrap-guide-view.coffee {View} = require 'space-pen' $ = require 'jquery' _ = require 'underscore' module.exports = class WrapGuideView extends View @activate: -> rootView.eachEditor (editor) => editor.underlayer.append(new WrapGuideView(editor)) if editor.attached @content: -> ...
{View} = require 'space-pen' $ = require 'jquery' _ = require 'underscore' module.exports = class WrapGuideView extends View @activate: -> rootView.eachEditor (editor) -> editor.underlayer.append(new WrapGuideView(editor)) if editor.attached @content: -> @div class: 'wrap-guide' defaultColumn: 80...
<|file_sep|>original/lib/wrap-guide-view.coffee {View} = require 'space-pen' $ = require 'jquery' _ = require 'underscore' module.exports = class WrapGuideView extends View @activate: -> rootView.eachEditor (editor) => editor.underlayer.append(new WrapGuideView(editor)) if editor.attached @content: -> ...
eada366436f04f4e8bc4f0edbe20d9cadb27ae63
lib/wrap-guide-view.coffee
lib/wrap-guide-view.coffee
CoffeeScript
<|file_sep|>_octopress/source/_includes/custom/asides/ads.html.diff original: Struggling with file uploads? Let updated: Struggling with file uploads? Let <|file_sep|>original/_octopress/source/_includes/custom/asides/ads.html <section> <h1>Sponsors</h1> <p> Struggling with file uploads? Let <a title="File ...
<section> <h1>Sponsors</h1> <p> Struggling with file uploads? Let <a title="File uploading &amp; encoding as a service" style="color: #3464a4;" href="http://transloadit.com">Transloadit</a> deal with progress bars, ffmpeg and imagemagick so you can focus on your web/app. <a href="https://transloadit.com/prici...
<|file_sep|>_octopress/source/_includes/custom/asides/ads.html.diff original: Struggling with file uploads? Let updated: Struggling with file uploads? Let <|file_sep|>original/_octopress/source/_includes/custom/asides/ads.html <section> <h1>Sponsors</h1> <p> Struggling with file uploads? Let <a title="File ...
5bba6266b48820abeccb5c2b1b141d84278387ca
_octopress/source/_includes/custom/asides/ads.html
_octopress/source/_includes/custom/asides/ads.html
HTML
<|file_sep|>original/script/upload-windows-pdb.py def main(): os.chdir(SOURCE_ROOT) rm_rf(SYMBOLS_DIR) safe_mkdir(SYMBOLS_DIR) for pdb in PDB_LIST: run_symstore(pdb, SYMBOLS_DIR, 'AtomShell') bucket, access_key, secret_key = s3_config() files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb') upload_symbol...
def main(): os.chdir(SOURCE_ROOT) rm_rf(SYMBOLS_DIR) safe_mkdir(SYMBOLS_DIR) for pdb in PDB_LIST: run_symstore(pdb, SYMBOLS_DIR, 'AtomShell') bucket, access_key, secret_key = s3_config() files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb') files = [f.lower() for f in files] upload_symbols(bucket, acc...
<|file_sep|>original/script/upload-windows-pdb.py def main(): os.chdir(SOURCE_ROOT) rm_rf(SYMBOLS_DIR) safe_mkdir(SYMBOLS_DIR) for pdb in PDB_LIST: run_symstore(pdb, SYMBOLS_DIR, 'AtomShell') bucket, access_key, secret_key = s3_config() files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb') upload_symbol...
6d663d1d0172b716e0dccc1f617b5a09b2905b67
script/upload-windows-pdb.py
script/upload-windows-pdb.py
Python
<|file_sep|>original/.travis.yml sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 matrix: fast_finish: true include: - php: 5.3 dist: precise env: COMPOSER_FLAGS="--prefer-lowest" before_script: - composer update --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS} scr...
sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 cache: directories: - ${HOME}/.composer/cache/files matrix: fast_finish: true include: - php: 5.3 dist: precise env: COMPOSER_FLAGS="--prefer-lowest"
<|file_sep|>original/.travis.yml sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 matrix: fast_finish: true include: - php: 5.3 dist: precise env: COMPOSER_FLAGS="--prefer-lowest" before_script: - composer update --no-interaction --no-progress --no-suggest ${COMPOSER_FLAGS} scr...
392eff7dc641388ffd03c4d58d647e721d0e297c
.travis.yml
.travis.yml
YAML
<|file_sep|>original/lib/nutrella/cache.rb rescue nil end def write(key, value) File.write(path, cached_entries(key, value).to_yaml) end def cached_entries(key, value) entries = cache_contents.reject { |k, _v| k == key } [[key, value]].concat(entries).take(capacity) re...
rescue nil end def write(key, value) File.write(path, cached_entries(key, value).to_yaml) end def cached_entries(key, value) entries = cache_contents.reject { |k, _v| k == key } [[key, value]].concat(entries).take(capacity) rescue [[key, value]] end def ...
<|file_sep|>original/lib/nutrella/cache.rb rescue nil end def write(key, value) File.write(path, cached_entries(key, value).to_yaml) end def cached_entries(key, value) entries = cache_contents.reject { |k, _v| k == key } [[key, value]].concat(entries).take(capacity) re...
36ac09575111b8d05b19dc723553160234f7d524
lib/nutrella/cache.rb
lib/nutrella/cache.rb
Ruby
<|file_sep|>original/YumiFacebookSDK/5.5.1/YumiFacebook.podspec Pod::Spec.new do |s| name = "Facebook" version = "5.5.1" s.name = "Yumi#{name}" s.version = version s.summary = "Yumi#{name}." s.description = "Yumi#{name} is the #{name} SDK cocoapods created by Yumimobi" s.homepage =...
Pod::Spec.new do |s| name = "Facebook" version = "5.5.1" s.name = "Yumi#{name}" s.version = version s.summary = "Yumi#{name}." s.description = "Yumi#{name} is the #{name} SDK cocoapods created by Yumimobi" s.homepage = "http://www.yumimobi.com/" s.license = "MIT" s.author = { "...
<|file_sep|>original/YumiFacebookSDK/5.5.1/YumiFacebook.podspec Pod::Spec.new do |s| name = "Facebook" version = "5.5.1" s.name = "Yumi#{name}" s.version = version s.summary = "Yumi#{name}." s.description = "Yumi#{name} is the #{name} SDK cocoapods created by Yumimobi" s.homepage =...
d8bcf4575789b9dc1f6ed4cb164f701547983989
YumiFacebookSDK/5.5.1/YumiFacebook.podspec
YumiFacebookSDK/5.5.1/YumiFacebook.podspec
Ruby
<|file_sep|>original/requirements.txt Fabric==1.6.1 boto==2.12.0 docopt==0.6.1 livereload==1.0.0 paramiko==1.10.1 ply==3.4 pycrypto==2.6 slimit==0.8.1 tornado==3.1 wsgiref==0.1.2 <|file_sep|>current/requirements.txt Fabric==1.6.1 boto==2.12.0 docopt==0.6.1 livereload==1.0.0 paramiko==1.10.1 ply==3.4 pycrypto==2.6 slimi...
Fabric==1.6.1 boto==2.12.0 docopt==0.6.1 livereload==1.0.0 paramiko==1.10.1 ply==3.4 pycrypto==2.6 slimit==0.8.1 tornado==3.1 wsgiref==0.1.2 Flask==0.10.1
<|file_sep|>original/requirements.txt Fabric==1.6.1 boto==2.12.0 docopt==0.6.1 livereload==1.0.0 paramiko==1.10.1 ply==3.4 pycrypto==2.6 slimit==0.8.1 tornado==3.1 wsgiref==0.1.2 <|file_sep|>current/requirements.txt Fabric==1.6.1 boto==2.12.0 docopt==0.6.1 livereload==1.0.0 paramiko==1.10.1 ply==3.4 pycrypto==2.6 slimi...
785d4c9b1b6d4f9927df2da29302ab1005d8eac5
requirements.txt
requirements.txt
Text
<|file_sep|>original/src/main.rs println!("{}", header); loop { let readline = rl.readline(prompt); match readline { Ok(line) => { rl.add_history_entry(&line); match line.as_str() { "exit" | "quit" => break, _ =...
println!("{}", header); loop { let readline = rl.readline(prompt); match readline { Ok(line) => { rl.add_history_entry(&line); match line.as_str() { "exit" | "quit" => break, _ => { let p...
<|file_sep|>original/src/main.rs println!("{}", header); loop { let readline = rl.readline(prompt); match readline { Ok(line) => { rl.add_history_entry(&line); match line.as_str() { "exit" | "quit" => break, _ =...
6fe0862e33b60f537cafd56e069c09b932a6bb54
src/main.rs
src/main.rs
Rust
<|file_sep|>original/lib/nj.jl function scriptify(mod::Module,filename::ASCIIString) ast = parse("function _(args...)\n" * readall(filename) * "end"); args2 = Array(Any,0); paths = Array(ASCIIString,0); for astNode in ast.args[2].args if(typeof(astNode) == Expr && astNode.head == :call && astNod...
function scriptify(mod::Module,filename::ASCIIString) ast = parse("function _(args...)\n" * readall(filename) * "end"); args2 = Array(Any,0); paths = Array(ASCIIString,0); for astNode in ast.args[2].args if(typeof(astNode) == Expr && astNode.head == :call && astNode.args[1] == :include) ...
<|file_sep|>original/lib/nj.jl function scriptify(mod::Module,filename::ASCIIString) ast = parse("function _(args...)\n" * readall(filename) * "end"); args2 = Array(Any,0); paths = Array(ASCIIString,0); for astNode in ast.args[2].args if(typeof(astNode) == Expr && astNode.head == :call && astNod...
c4c7feb0b8750c42c7b76237b62382cc796b36ec
lib/nj.jl
lib/nj.jl
Julia
<|file_sep|>original/wcfsetup/install/files/lib/system/user/authentication/event/UserLoggedIn.class.php * * @author Tim Duesterhus * @copyright 2001-2021 WoltLab GmbH * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php> * @package WoltLabSuite\Core\System\User\Authentic...
* * @author Tim Duesterhus * @copyright 2001-2021 WoltLab GmbH * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php> * @package WoltLabSuite\Core\System\User\Authentication\Event * @since 5.5 */ final class UserLoggedIn implements IEvent { private int $userID; ...
<|file_sep|>original/wcfsetup/install/files/lib/system/user/authentication/event/UserLoggedIn.class.php * * @author Tim Duesterhus * @copyright 2001-2021 WoltLab GmbH * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php> * @package WoltLabSuite\Core\System\User\Authentic...
5a8b7b288e47d5a55ee079d1a5a781e57a533a58
wcfsetup/install/files/lib/system/user/authentication/event/UserLoggedIn.class.php
wcfsetup/install/files/lib/system/user/authentication/event/UserLoggedIn.class.php
PHP
<|file_sep|>packages/at/attoparsec-data.yaml.diff original: hash: a4d8a89e9f2016dfaf088088058a543756a2df1a651e02642502ed6444b67971 updated: hash: 068fdb772fc85eea38ef818075c6c41fc90b8af2ffeccebe572a29e54f6cbff2 <|file_sep|>packages/at/attoparsec-data.yaml.diff original: updated: uuid: ! '>=1.3 && <1.4' <|file_sep|>p...
base-prelude: <2 base: <5 time: ! '>=1.4 && <2' text: ! '>=1 && <2' uuid: ! '>=1.3 && <1.4' attoparsec-time: ! '>=1 && <1.1' attoparsec: ==0.13.* scientific: ! '>=0.2 && <0.4' all-versions: - 0.1.1.1 - 0.1.1.2 - '1' - 1.0.1 - 1.0.2 - 1.0.3 - 1.0.4 author: Nikita Volkov <nikita.y.volkov@mail.ru> latest: ...
<|file_sep|>packages/at/attoparsec-data.yaml.diff original: hash: a4d8a89e9f2016dfaf088088058a543756a2df1a651e02642502ed6444b67971 updated: hash: 068fdb772fc85eea38ef818075c6c41fc90b8af2ffeccebe572a29e54f6cbff2 <|file_sep|>packages/at/attoparsec-data.yaml.diff original: updated: uuid: ! '>=1.3 && <1.4' <|file_sep|>p...
02cfe5839324dd829127c49bcedf2cabea3409f7
packages/at/attoparsec-data.yaml
packages/at/attoparsec-data.yaml
YAML
<|file_sep|>original/tests/test_simdata.py <|file_sep|>current/tests/test_simdata.py <|file_sep|>updated/tests/test_simdata.py
import nose import cle import os test_location = os.path.join(os.path.dirname(os.path.realpath(__file__)), os.path.join('..', '..', 'binaries', 'tests')) def test_progname(): filename = os.path.join(test_location, 'x86_64', 'cat') ld = cle.Loader(filename, auto_loa...
<|file_sep|>original/tests/test_simdata.py <|file_sep|>current/tests/test_simdata.py <|file_sep|>updated/tests/test_simdata.py import nose import cle import os test_location = os.path.join(os.path.dirname(os.path.realpath(__file__)), os.path.join('..', '..', 'binaries', '...
b826571c35de75a62d23b2b92530508a9466b7d0
tests/test_simdata.py
tests/test_simdata.py
Python
<|file_sep|>original/os/osx.sh # ---------------------------------------------------------------------------- # Display the full POSIX path as the Finder window title defaults write com.apple.finder _FXShowPosixPathInTitle -bool true # Disable the warning when changing a file extension defaults write com.apple.finder...
# ---------------------------------------------------------------------------- # Messages # ---------------------------------------------------------------------------- # Disable automatic emoji substitution. defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "automaticEmojiSubsti...
<|file_sep|>original/os/osx.sh # ---------------------------------------------------------------------------- # Display the full POSIX path as the Finder window title defaults write com.apple.finder _FXShowPosixPathInTitle -bool true # Disable the warning when changing a file extension defaults write com.apple.finder...
248110080721c137f3b9a864c08f90156a34699c
os/osx.sh
os/osx.sh
Shell
<|file_sep|>original/tests/run/overloading-specifity.scala implicit val gen: Generic = new Generic implicit def showGen[T](implicit gen: Generic): Show[T] = new Show[T](2) } object Test extends App { trait Context implied ctx for Context object a { def foo[T](implicit gen: Generic): Show[T] = new Show[T...
trait Context implied ctx for Context object a { def foo[T](implicit gen: Generic): Show[T] = new Show[T](1) def foo[T](implicit gen: Generic, ctx: Context): Show[T] = new Show[T](2) } object b { def foo[T](implicit gen: Generic): Show[T] = new Show[T](1) def foo[T]: Show[T] = new Show[T](2) ...
<|file_sep|>original/tests/run/overloading-specifity.scala implicit val gen: Generic = new Generic implicit def showGen[T](implicit gen: Generic): Show[T] = new Show[T](2) } object Test extends App { trait Context implied ctx for Context object a { def foo[T](implicit gen: Generic): Show[T] = new Show[T...
b47d2f25498e9e3ffcc23b93e12b427a72ec7d5b
tests/run/overloading-specifity.scala
tests/run/overloading-specifity.scala
Scala
<|file_sep|>original/django_git/management/commands/pull_oldest.py class GitPullOnce(DjangoCmdBase): git_tag_name = "git" def msg_loop(self): for repo in enum_git_repo(): if os.path.exists(repo.full_path): p = GitSynchronizer(repo.full_path, NotificationServiceClient().notif...
class GitPullOnce(DjangoCmdBase): git_tag_name = "git" def msg_loop(self): for repo in enum_git_repo(): if os.path.exists(repo.full_path): p = GitSynchronizer(repo.full_path, NotificationServiceClient().notify) success = False try: ...
<|file_sep|>original/django_git/management/commands/pull_oldest.py class GitPullOnce(DjangoCmdBase): git_tag_name = "git" def msg_loop(self): for repo in enum_git_repo(): if os.path.exists(repo.full_path): p = GitSynchronizer(repo.full_path, NotificationServiceClient().notif...
6dbefe8a62ae375b487c7e21340aba5b81eaeb7f
django_git/management/commands/pull_oldest.py
django_git/management/commands/pull_oldest.py
Python
<|file_sep|>original/homebrew/install.sh # Install Homebrew packages brew install ack brew install spark brew install grc brew install git brew install hg brew install wget brew install tree brew install zsh brew install libyaml # GNU Duplicates brew install coreutils --default-names brew install moreutils --default-n...
# Install Homebrew packages brew install ack brew install spark brew install grc brew install git brew install hg brew install wget brew install tree brew install zsh brew install libyaml brew install heroku-toolbelt # GNU Duplicates brew install coreutils --default-names brew install moreutils --default-names brew in...
<|file_sep|>original/homebrew/install.sh # Install Homebrew packages brew install ack brew install spark brew install grc brew install git brew install hg brew install wget brew install tree brew install zsh brew install libyaml # GNU Duplicates brew install coreutils --default-names brew install moreutils --default-n...
7ee43cbc412f8d764b0d12ba2578d783001819c4
homebrew/install.sh
homebrew/install.sh
Shell
<|file_sep|>original/README.md findbugs-maven-plugin ===================== Maven Mojo Plug-In to generate reports based on the FindBugs Analyzer The documentation for the **FindBugs Maven Plugin** is here: http://mojo.codehaus.org/findbugs-maven-plugin/ Run all test mvn -Prun-its clean install Skip tests mvn -Dski...
findbugs-maven-plugin ===================== Maven Mojo Plug-In to generate reports based on the FindBugs Analyzer The documentation and issue tracking for the **FindBugs Maven Plugin** is through: http://mojo.codehaus.org/findbugs-maven-plugin/ Run all test mvn -Prun-its clean install Skip tests mvn -DskipTests=tr...
<|file_sep|>original/README.md findbugs-maven-plugin ===================== Maven Mojo Plug-In to generate reports based on the FindBugs Analyzer The documentation for the **FindBugs Maven Plugin** is here: http://mojo.codehaus.org/findbugs-maven-plugin/ Run all test mvn -Prun-its clean install Skip tests mvn -Dski...
6c396d8b43f108f72e38bdaf5f897e580400b9d8
README.md
README.md
Markdown
<|file_sep|>original/res/drawable/top_bar.xml <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:startColor="#C6C6C6" android:endColor="#0FFF" android:angle="90" /> </shape> <|file_sep|>current/res/drawable/top_bar.xml <shape xmlns:android="http://schemas.an...
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:startColor="#CCC" android:endColor="#0FFF" android:angle="90" /> </shape>
<|file_sep|>original/res/drawable/top_bar.xml <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <gradient android:startColor="#C6C6C6" android:endColor="#0FFF" android:angle="90" /> </shape> <|file_sep|>current/res/drawable/top_bar.xml <shape xmlns:android="http://schemas.an...
194f91c02ec9ad24f7729d110c209fe91291a66a
res/drawable/top_bar.xml
res/drawable/top_bar.xml
XML
<|file_sep|>original/requirements.txt aniso8601==0.92 Flask==0.10.1 Flask-JWT==0.2.0 flask-mongoengine==0.7.1 Flask-REST==1.1 Flask-RESTful==0.3.2 Flask-Script==2.0.5 Flask-WTF==0.11 itsdangerous==0.24 Jinja2==2.7.3 MarkupSafe==0.23 mongoengine==0.9.0 passlib==1.6.2 py==1.4.26 pymongo==2.7.2 pytz==2015.2 six==1.9.0 uWS...
aniso8601==0.92 Flask==0.10.1 Flask-JWT==0.2.0 flask-mongoengine==0.7.1 Flask-REST==1.1 Flask-RESTful==0.3.2 Flask-Script==2.0.5 Flask-WTF==0.11 itsdangerous==0.24 Jinja2==2.7.3 MarkupSafe==0.23 mongoengine==0.9.0 passlib==1.6.2 py==1.4.26 pymongo==2.7.2 pytz==2015.2 six==1.9.0 uWSGI==2.0.10 Werkzeug==0.11.9 WTForms==2...
<|file_sep|>original/requirements.txt aniso8601==0.92 Flask==0.10.1 Flask-JWT==0.2.0 flask-mongoengine==0.7.1 Flask-REST==1.1 Flask-RESTful==0.3.2 Flask-Script==2.0.5 Flask-WTF==0.11 itsdangerous==0.24 Jinja2==2.7.3 MarkupSafe==0.23 mongoengine==0.9.0 passlib==1.6.2 py==1.4.26 pymongo==2.7.2 pytz==2015.2 six==1.9.0 uWS...
4ffafc62a3e3a7f3f391d81f8fa8d61071c7b024
requirements.txt
requirements.txt
Text
<|file_sep|>original/app/views/groups/show.html.haml = @group.name - if @group.can_be_edited_by? current_user = link_to "Edit group", edit_group_path(@group), class: "btn btn-mini" - if @group.users_include? current_user - membership = current_user.group_membership(@group) = li...
- if @group.can_be_edited_by? current_user = link_to "Edit group", edit_group_path(@group), class: "btn btn-mini" - if @group.users_include? current_user - membership = current_user.group_membership(@group) = link_to "Leave group", membership, method: :delete, class: "btn btn-mini", ...
<|file_sep|>original/app/views/groups/show.html.haml = @group.name - if @group.can_be_edited_by? current_user = link_to "Edit group", edit_group_path(@group), class: "btn btn-mini" - if @group.users_include? current_user - membership = current_user.group_membership(@group) = li...
2d01643601a2a3dfa22933289b271425dd2c574b
app/views/groups/show.html.haml
app/views/groups/show.html.haml
Haml
<|file_sep|>original/gradle/wrapper/gradle-wrapper.properties # # Copyright 2020 Peter Kenji Yamanaka # # 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/LI...
# # Copyright 2020 Peter Kenji Yamanaka # # 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/gradle/wrapper/gradle-wrapper.properties # # Copyright 2020 Peter Kenji Yamanaka # # 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/LI...
8d2324f9d9d7f8524c89dbbf5e1ff01f5164cb9c
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
INI
<|file_sep|>original/evalExp.py <|file_sep|>current/evalExp.py <|file_sep|>updated/evalExp.py
from keywords import * from reg import * from parse import parse def evalExp(): expr = parse(fetch(EXPR)) # make dedicated fetch_expr()? # expr = transformMacros(expr) evalFunc = getEvalFunc(expr) # evalFunc() # reassign next step def getEvalFunc(expr): if isVar(expr): return compVar if isNum(expr): retur...
<|file_sep|>original/evalExp.py <|file_sep|>current/evalExp.py <|file_sep|>updated/evalExp.py from keywords import * from reg import * from parse import parse def evalExp(): expr = parse(fetch(EXPR)) # make dedicated fetch_expr()? # expr = transformMacros(expr) evalFunc = getEvalFunc(expr) # evalFunc() # reassi...
278cd37ada508701896c2669a215365785f5a261
evalExp.py
evalExp.py
Python
<|file_sep|>original/app/assets/javascripts/sprangular/controllers/account.coffee Sprangular.controller 'AccountCtrl', ($scope, $location, $routeParams, Status, Account) -> Status.pageTitle = 'My Account' user = Account.user $scope.editing = false $scope.user = user refreshAccount = -> Account.init().t...
Sprangular.controller 'AccountCtrl', ($scope, $location, $routeParams, Status, Account) -> Status.pageTitle = 'My Account' user = Account.user $scope.editing = false $scope.user = user refreshAccount = -> Account.reload().then -> user = Account.user user.password = '' user.password_co...
<|file_sep|>original/app/assets/javascripts/sprangular/controllers/account.coffee Sprangular.controller 'AccountCtrl', ($scope, $location, $routeParams, Status, Account) -> Status.pageTitle = 'My Account' user = Account.user $scope.editing = false $scope.user = user refreshAccount = -> Account.init().t...
82a5b0e69bcd6e83a904e477bf8ffa6c3ec3f588
app/assets/javascripts/sprangular/controllers/account.coffee
app/assets/javascripts/sprangular/controllers/account.coffee
CoffeeScript
<|file_sep|>original/gherkin/ruby/README.md # Gherkin for Ruby Gherkin parser/compiler for Ruby. Please see [Gherkin](https://github.com/cucumber/gherkin) for details. ## To build ~~~bash cd <project_root>/ruby make ~~~ <|file_sep|>current/gherkin/ruby/README.md # Gherkin for Ruby Gherkin parser/compiler for Ruby. ...
# Gherkin for Ruby Gherkin parser/compiler for Ruby. Please see [Gherkin](https://github.com/cucumber/cucumber/tree/master/gherkin) for details. ## To build ~~~bash cd <project_root>/ruby make ~~~
<|file_sep|>original/gherkin/ruby/README.md # Gherkin for Ruby Gherkin parser/compiler for Ruby. Please see [Gherkin](https://github.com/cucumber/gherkin) for details. ## To build ~~~bash cd <project_root>/ruby make ~~~ <|file_sep|>current/gherkin/ruby/README.md # Gherkin for Ruby Gherkin parser/compiler for Ruby. ...
f854b7e9d72a756bfa57e2b4a005098fc61d7c61
gherkin/ruby/README.md
gherkin/ruby/README.md
Markdown
<|file_sep|>original/readme.md **Interactor UI Automation** has been renamed to UI Interactors. Please use the renamed gem [ui_interactors](https://github.com/accelecode/ui_interactors). <|file_sep|>current/readme.md **Interactor UI Automation** has been renamed to UI Interactors. Please use the renamed gem [ui_intera...
# UI Interactors **UI Interactors** makes it easy to automate browser interaction using `selenium-webdriver` by following a series of conventions for *selecting* and then *interacting* with various types of HTML elements. ## Installation Add this line to your application's Gemfile: ```ruby gem 'ui_interactors' ``` ...
<|file_sep|>original/readme.md **Interactor UI Automation** has been renamed to UI Interactors. Please use the renamed gem [ui_interactors](https://github.com/accelecode/ui_interactors). <|file_sep|>current/readme.md **Interactor UI Automation** has been renamed to UI Interactors. Please use the renamed gem [ui_intera...
f9039dff75c541110efb30dadc54d25a249b859a
readme.md
readme.md
Markdown
<|file_sep|>systemrdl/__init__.py.diff original: updated: <|file_sep|>original/systemrdl/__init__.py from .__about__ import __version__ from .compiler import RDLCompiler from .walker import RDLListener, RDLWalker from .messages import RDLCompileError <|file_sep|>current/systemrdl/__init__.py from .__about__ import __...
from .__about__ import __version__ from .compiler import RDLCompiler from .walker import RDLListener, RDLWalker from .messages import RDLCompileError from .node import AddressableNode, VectorNode, SignalNode from .node import FieldNode, RegNode, RegfileNode, AddrmapNode, MemNode from .component import AddressableCom...
<|file_sep|>systemrdl/__init__.py.diff original: updated: <|file_sep|>original/systemrdl/__init__.py from .__about__ import __version__ from .compiler import RDLCompiler from .walker import RDLListener, RDLWalker from .messages import RDLCompileError <|file_sep|>current/systemrdl/__init__.py from .__about__ import __...
807d7efe7de00950df675e78249dcada298b6cd1
systemrdl/__init__.py
systemrdl/__init__.py
Python
<|file_sep|>original/astroplpython/function/statistic/Maximum.py class Maximum (object): @staticmethod def calculate (measurement_list): import numpy as np ''' Find the maximum measurement value for any list of measured values. ''' x = [] for val in mea...
''' Created on Feb 6, 2015 @author: thomas ''' class Maximum (object): @staticmethod def calculate (measurement_list): import numpy as np ''' Find the maximum measurement value for any list of measured values. ''' x = [] for val in measurement_list: ...
<|file_sep|>original/astroplpython/function/statistic/Maximum.py class Maximum (object): @staticmethod def calculate (measurement_list): import numpy as np ''' Find the maximum measurement value for any list of measured values. ''' x = [] for val in mea...
990a3266739e5a4d763dd585f7cb722c0fe2b0f5
astroplpython/function/statistic/Maximum.py
astroplpython/function/statistic/Maximum.py
Python
<|file_sep|>original/packages/uk/ukrainian-phonetics-common.yaml <|file_sep|>current/packages/uk/ukrainian-phonetics-common.yaml <|file_sep|>updated/packages/uk/ukrainian-phonetics-common.yaml
homepage: https://hackage.haskell.org/package/ukrainian-phonetics-common changelog-type: markdown hash: 413a2caff13b05c3835874041c923ffcc5f9621c5da76db63ff2ceb6c9a0a887 test-bench-deps: {} maintainer: olexandr543@yahoo.com synopsis: A library to work with the basic Ukrainian phonetics and syllable segmentation. changel...
<|file_sep|>original/packages/uk/ukrainian-phonetics-common.yaml <|file_sep|>current/packages/uk/ukrainian-phonetics-common.yaml <|file_sep|>updated/packages/uk/ukrainian-phonetics-common.yaml homepage: https://hackage.haskell.org/package/ukrainian-phonetics-common changelog-type: markdown hash: 413a2caff13b05c383587...
b727889394bafa2ea9677355878406aea0d28fe9
packages/uk/ukrainian-phonetics-common.yaml
packages/uk/ukrainian-phonetics-common.yaml
YAML
<|file_sep|>original/spec/indie-spec.coffee <|file_sep|>current/spec/indie-spec.coffee <|file_sep|>updated/spec/indie-spec.coffee
describe 'Indie', -> Validate = require('../lib/validate') Indie = require('../lib/indie') indie = null beforeEach -> indie?.dispose() indie = new Indie({}) describe 'Validations', -> it 'just cares about a name', -> linter = {} Validate.linter(linter, true) expect(linter.name)...
<|file_sep|>original/spec/indie-spec.coffee <|file_sep|>current/spec/indie-spec.coffee <|file_sep|>updated/spec/indie-spec.coffee describe 'Indie', -> Validate = require('../lib/validate') Indie = require('../lib/indie') indie = null beforeEach -> indie?.dispose() indie = new Indie({}) describe 'V...
b5d319dfc90ca30cea9c29e9602ba82923fa8c46
spec/indie-spec.coffee
spec/indie-spec.coffee
CoffeeScript
<|file_sep|>original/context-menu-disable/context-menu-disable-tortoise-git.bat @echo off setlocal EnableDelayedExpansion set registryRoot=HKCU\Software\Classes set key=TortoiseGit reg add "%registryRoot%\*\shellex\ContextMenuHandlers\%key%" /d "---" /f reg add "%registryRoot%\Directory\Background\shellex\ContextMen...
@echo off setlocal EnableDelayedExpansion set registryRoot=HKCU\Software\Classes set key=TortoiseGit reg add "%registryRoot%\*\shellex\ContextMenuHandlers\%key%" /d "---" /f reg add "%registryRoot%\Directory\Background\shellex\ContextMenuHandlers\%key%" /d "---" /f reg add "%registryRoot%\Directory\shellex\ContextMe...
<|file_sep|>original/context-menu-disable/context-menu-disable-tortoise-git.bat @echo off setlocal EnableDelayedExpansion set registryRoot=HKCU\Software\Classes set key=TortoiseGit reg add "%registryRoot%\*\shellex\ContextMenuHandlers\%key%" /d "---" /f reg add "%registryRoot%\Directory\Background\shellex\ContextMen...
a66f00047350c11fbe9993d333c432c63a75f371
context-menu-disable/context-menu-disable-tortoise-git.bat
context-menu-disable/context-menu-disable-tortoise-git.bat
Batchfile
<|file_sep|>original/.travis.yml - master - /.+-stable$/ addons: code_climate: repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f rvm: - 2.0.0-p647 - 2.3.4 - 2.4.1 - 2.6.2 env: - LANG="en_US.UTF-8" script: bundle exec rake spec git: submodules: false before_install: -...
- master - /.+-stable$/ addons: code_climate: repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f rvm: - 2.0.0-p647 - 2.3.4 - 2.4.1 - 2.6.2 - 2.7.0 env: - LANG="en_US.UTF-8" script: bundle exec rake spec git: submodules: false before_install: - gem install bundler -v...
<|file_sep|>original/.travis.yml - master - /.+-stable$/ addons: code_climate: repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f rvm: - 2.0.0-p647 - 2.3.4 - 2.4.1 - 2.6.2 env: - LANG="en_US.UTF-8" script: bundle exec rake spec git: submodules: false before_install: -...
bd4f3d5c437d5ba61725080815e3c1857974b954
.travis.yml
.travis.yml
YAML
<|file_sep|>original/dart_test.yaml presets: travis: # Travis is sloooow. timeout: 3x <|file_sep|>current/dart_test.yaml presets: travis: # Travis is sloooow. timeout: 3x <|file_sep|>updated/dart_test.yaml
presets: travis: # Travis is sloooow. timeout: 3x # Pub has a huge number of small suites, which means test is frequently # loading new ones. Keeping concurrency low helps limit load timeouts. concurrency: 4
<|file_sep|>original/dart_test.yaml presets: travis: # Travis is sloooow. timeout: 3x <|file_sep|>current/dart_test.yaml presets: travis: # Travis is sloooow. timeout: 3x <|file_sep|>updated/dart_test.yaml presets: travis: # Travis is sloooow. timeout: 3x # Pub has a huge number of sm...
5fc87a678fc30482b854618f11cba187d0a67e16
dart_test.yaml
dart_test.yaml
YAML
<|file_sep|>original/lib/cryptoexchange/exchanges/aex/services/pairs.rb module Cryptoexchange::Exchanges module Aex module Services class Pairs < Cryptoexchange::Services::Pairs PAIRS_URLS = [ "#{Cryptoexchange::Exchanges::Aex::Market::API_URL}/ticker.php?c=all&mk_type=btc", "#{C...
module Cryptoexchange::Exchanges module Aex module Services class Pairs < Cryptoexchange::Services::Pairs PAIRS_URLS = [ "#{Cryptoexchange::Exchanges::Aex::Market::API_URL}/ticker.php?c=all&mk_type=btc", "#{Cryptoexchange::Exchanges::Aex::Market::API_URL}/ticker.php?c=all&mk_type...
<|file_sep|>original/lib/cryptoexchange/exchanges/aex/services/pairs.rb module Cryptoexchange::Exchanges module Aex module Services class Pairs < Cryptoexchange::Services::Pairs PAIRS_URLS = [ "#{Cryptoexchange::Exchanges::Aex::Market::API_URL}/ticker.php?c=all&mk_type=btc", "#{C...
71e8d371c526eb0b152aa6f541db2722c4f2cb8c
lib/cryptoexchange/exchanges/aex/services/pairs.rb
lib/cryptoexchange/exchanges/aex/services/pairs.rb
Ruby
<|file_sep|>original/components/org.wso2.carbon.identity.oidc.session/src/test/java/org/wso2/carbon/identity/oidc/session/cache/OIDCSessionDataCacheTest.java <|file_sep|>current/components/org.wso2.carbon.identity.oidc.session/src/test/java/org/wso2/carbon/identity/oidc/session/cache/OIDCSessionDataCacheTest.java <|f...
/* * Copyright (c) 2021, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/li...
<|file_sep|>original/components/org.wso2.carbon.identity.oidc.session/src/test/java/org/wso2/carbon/identity/oidc/session/cache/OIDCSessionDataCacheTest.java <|file_sep|>current/components/org.wso2.carbon.identity.oidc.session/src/test/java/org/wso2/carbon/identity/oidc/session/cache/OIDCSessionDataCacheTest.java <|f...
16f43a31af2cb64d7f9a2ac33c09e5b30a4a31c3
components/org.wso2.carbon.identity.oidc.session/src/test/java/org/wso2/carbon/identity/oidc/session/cache/OIDCSessionDataCacheTest.java
components/org.wso2.carbon.identity.oidc.session/src/test/java/org/wso2/carbon/identity/oidc/session/cache/OIDCSessionDataCacheTest.java
Java
<|file_sep|>original/pajbot/migration/db.py class DatabaseMigratable: def __init__(self, conn): self.conn = conn @contextmanager def create_resource(self): with self.conn.cursor() as cursor: # begins a transaction automatically cursor.execute("CREATE TABLE IF NOT E...
class DatabaseMigratable: def __init__(self, conn): self.conn = conn @contextmanager def create_resource(self): with self.conn.cursor() as cursor: # begins a transaction automatically cursor.execute("CREATE TABLE IF NOT EXISTS schema_version(revision_id INT NOT NUL...
<|file_sep|>original/pajbot/migration/db.py class DatabaseMigratable: def __init__(self, conn): self.conn = conn @contextmanager def create_resource(self): with self.conn.cursor() as cursor: # begins a transaction automatically cursor.execute("CREATE TABLE IF NOT E...
b0961ac53a75ff3745d2297de80748f90c823827
pajbot/migration/db.py
pajbot/migration/db.py
Python
<|file_sep|>.travis.yml.diff original: rvm: 2.4.2 updated: rvm: 2.5.0 <|file_sep|>original/.travis.yml env: CHECK_LEAKS=true - os: linux rvm: 2.4.2 env: MSPEC_OPTS="-R2 -ff" - os: linux rvm: 2.2.8 - os: linux rvm: 2.3.5 - os: linux rvm: 2.4.2 env: CH...
env: CHECK_LEAKS=true - os: linux rvm: 2.5.0 env: MSPEC_OPTS="-R2 -ff" - os: linux rvm: 2.2.8 - os: linux rvm: 2.3.5 - os: linux rvm: 2.4.2 - os: linux rvm: 2.5.0 env: CHECK_LEAKS=true RUBOCOP=true - os: linux rvm: ruby-head allow_failures:...
<|file_sep|>.travis.yml.diff original: rvm: 2.4.2 updated: rvm: 2.5.0 <|file_sep|>original/.travis.yml env: CHECK_LEAKS=true - os: linux rvm: 2.4.2 env: MSPEC_OPTS="-R2 -ff" - os: linux rvm: 2.2.8 - os: linux rvm: 2.3.5 - os: linux rvm: 2.4.2 env: CH...
0013104d5a31647973d7c9b0d222c71eddf98a47
.travis.yml
.travis.yml
YAML
<|file_sep|>original/lib/file-view.coffee extension = fs.extension(@getPath()) if fs.isReadmePath(@getPath()) @fileName.addClass('readme-icon') else if fs.isCompressedExtension(extension) @fileName.addClass('compressed-icon') else if fs.isImageExtension(extension) @fileName.addClass('...
extension = fs.extension(@getPath()) if fs.isReadmePath(@getPath()) @fileName.addClass('readme-icon') else if fs.isCompressedExtension(extension) @fileName.addClass('compressed-icon') else if fs.isImageExtension(extension) @fileName.addClass('image-icon') else if fs.isPdfExtension...
<|file_sep|>original/lib/file-view.coffee extension = fs.extension(@getPath()) if fs.isReadmePath(@getPath()) @fileName.addClass('readme-icon') else if fs.isCompressedExtension(extension) @fileName.addClass('compressed-icon') else if fs.isImageExtension(extension) @fileName.addClass('...
11a5159c124e2344ca00f39d16bda908f74c144e
lib/file-view.coffee
lib/file-view.coffee
CoffeeScript
<|file_sep|>app/views/layouts/application.html.erb.diff original: <!DOCTYPE html> updated: <!DOCTYPE html> <|file_sep|>original/app/views/layouts/application.html.erb <body> <p></p> <% if notice then %> <div class="alert alert-notice alert-dismissible fade show" role="alert"> <button type="button...
<body> <p></p> <div class="container"> <% if notice then %> <div class="alert alert-info alert-dismissible fade show" role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> <%= ...
<|file_sep|>app/views/layouts/application.html.erb.diff original: <!DOCTYPE html> updated: <!DOCTYPE html> <|file_sep|>original/app/views/layouts/application.html.erb <body> <p></p> <% if notice then %> <div class="alert alert-notice alert-dismissible fade show" role="alert"> <button type="button...
c1a2c86e7f1b376ec130b8488ff9e0bd503f205d
app/views/layouts/application.html.erb
app/views/layouts/application.html.erb
HTML+ERB
<|file_sep|>original/README.md # JuliaDT [![Build Status](https://travis-ci.org/JuliaComputing/JuliaDT.svg?branch=master)](https://travis-ci.org/JuliaComputing/JuliaDT) [ ![Download](https://api.bintray.com/packages/bndtools/bndtools/update/images/download.svg) ](https://dl.bintray.com/snefru/JuliaDT/latest) [JuliaDT]...
# JuliaDT [![Build Status](https://travis-ci.org/JuliaComputing/JuliaDT.svg?branch=master)](https://travis-ci.org/JuliaComputing/JuliaDT) [ ![Download](https://api.bintray.com/packages/bndtools/bndtools/update/images/download.svg) ](https://dl.bintray.com/snefru/JuliaDT/latest) [JuliaDT](http://juliacomputing.com/blog...
<|file_sep|>original/README.md # JuliaDT [![Build Status](https://travis-ci.org/JuliaComputing/JuliaDT.svg?branch=master)](https://travis-ci.org/JuliaComputing/JuliaDT) [ ![Download](https://api.bintray.com/packages/bndtools/bndtools/update/images/download.svg) ](https://dl.bintray.com/snefru/JuliaDT/latest) [JuliaDT]...
a603b4f93777d68fa07fcea856766235c9298f1d
README.md
README.md
Markdown
<|file_sep|>original/NSLogger.podspec Pod::Spec.new do |s| s.name = 'NSLogger' s.version = '1.1' s.license = 'BSD' s.summary = 'A modern, flexible logging tool.' s.homepage = 'https://github.com/fpillet/NSLogger' s.author = { 'Florent Pillet' => 'fpillet@gmail.com' } s.source = { :git => 'https...
Pod::Spec.new do |s| s.name = 'NSLogger' s.version = '1.1' s.license = 'BSD' s.summary = 'A modern, flexible logging tool.' s.homepage = 'https://github.com/fpillet/NSLogger' s.author = { 'Florent Pillet' => 'fpillet@gmail.com' } s.source = { :git => 'https://github.com/fpillet/NSLogger.git', :...
<|file_sep|>original/NSLogger.podspec Pod::Spec.new do |s| s.name = 'NSLogger' s.version = '1.1' s.license = 'BSD' s.summary = 'A modern, flexible logging tool.' s.homepage = 'https://github.com/fpillet/NSLogger' s.author = { 'Florent Pillet' => 'fpillet@gmail.com' } s.source = { :git => 'https...
106a9a94ec1f9dfd76841ac0f152bca9bae881e5
NSLogger.podspec
NSLogger.podspec
Ruby
<|file_sep|>original/README.md # bidir-map-rs [![TravisCI build status](https://travis-ci.org/nabijaczleweli/bidir-map-rs.svg?branch=master)](https://travis-ci.org/nabijaczleweli/bidir-map-rs) [![AppVeyorCI build status](https://ci.appveyor.com/api/projects/status/0xtvtdv6ab3y6wfi/branch/master?svg=true)](https://ci.ap...
# bidir-map-rs [![TravisCI build status](https://travis-ci.org/nabijaczleweli/bidir-map-rs.svg?branch=master)](https://travis-ci.org/nabijaczleweli/bidir-map-rs) [![AppVeyorCI build status](https://ci.appveyor.com/api/projects/status/0xtvtdv6ab3y6wfi/branch/master?svg=true)](https://ci.appveyor.com/project/nabijaczlewe...
<|file_sep|>original/README.md # bidir-map-rs [![TravisCI build status](https://travis-ci.org/nabijaczleweli/bidir-map-rs.svg?branch=master)](https://travis-ci.org/nabijaczleweli/bidir-map-rs) [![AppVeyorCI build status](https://ci.appveyor.com/api/projects/status/0xtvtdv6ab3y6wfi/branch/master?svg=true)](https://ci.ap...
1d1e6de957a60366b3dbb5b027407babc087d58f
README.md
README.md
Markdown
<|file_sep|>original/test/filters/test_rdiscount.rb filter = ::Nanoc::Filters::RDiscount.new # Run filter result = filter.setup_and_run('> Quote') assert_match(/<blockquote>\s*<p>Quote<\/p>\s*<\/blockquote>/, result) end end def test_with_extensions if_have 'rdiscount' do # C...
# Run filter result = filter.setup_and_run('> Quote') assert_match(/<blockquote>\s*<p>Quote<\/p>\s*<\/blockquote>/, result) end end # FIXME: Re-enable this test (flaky; quotation marks are not transformed consistently) # def test_with_extensions # if_have 'rdiscount' do # # Creat...
<|file_sep|>original/test/filters/test_rdiscount.rb filter = ::Nanoc::Filters::RDiscount.new # Run filter result = filter.setup_and_run('> Quote') assert_match(/<blockquote>\s*<p>Quote<\/p>\s*<\/blockquote>/, result) end end def test_with_extensions if_have 'rdiscount' do # C...
9186f66fe1ba31a8d11e2bc5f2960572852c4bd7
test/filters/test_rdiscount.rb
test/filters/test_rdiscount.rb
Ruby
<|file_sep|>original/package.json }, "keywords": [ "react-native", "bug", "reporting", "feedback", "instabug", "sdk" ], "author": "Hossam Hassan && Yousef Hamza", "license": "MIT", "bugs": { "url": "https://github.com/Instabug/instabug-reactnative/issues" }, "homepage": "http...
}, "keywords": [ "react-native", "bug", "reporting", "feedback", "instabug", "sdk" ], "author": "Hossam Hassan && Yousef Hamza", "license": "MIT", "bugs": { "url": "https://github.com/Instabug/instabug-reactnative/issues" }, "homepage": "https://github.com/Instabug/instabug-r...
<|file_sep|>original/package.json }, "keywords": [ "react-native", "bug", "reporting", "feedback", "instabug", "sdk" ], "author": "Hossam Hassan && Yousef Hamza", "license": "MIT", "bugs": { "url": "https://github.com/Instabug/instabug-reactnative/issues" }, "homepage": "http...
ce3266e3dadbf66552d4758af377ffa7da01f724
package.json
package.json
JSON
<|file_sep|>original/tests/SlackConnector.Tests.Unit/Connections/Monitoring/TimerTests.cs namespace SlackConnector.Tests.Unit.Connections.Monitoring { public class TimerTests { [Fact] public void should_run_task_at_least_5_times() { // given var timer = new Timer(...
namespace SlackConnector.Tests.Unit.Connections.Monitoring { public class TimerTests { [Fact] public void should_run_task_at_least_5_times() { // given var timer = new Timer(); int calls = 0; DateTime timeout = DateTime.Now.AddSeconds(20); ...
<|file_sep|>original/tests/SlackConnector.Tests.Unit/Connections/Monitoring/TimerTests.cs namespace SlackConnector.Tests.Unit.Connections.Monitoring { public class TimerTests { [Fact] public void should_run_task_at_least_5_times() { // given var timer = new Timer(...
74e9bc8c2c2fe345634b2b0ad9c0f3f4d19dece8
tests/SlackConnector.Tests.Unit/Connections/Monitoring/TimerTests.cs
tests/SlackConnector.Tests.Unit/Connections/Monitoring/TimerTests.cs
C#
<|file_sep|>original/org.jboss.tools.vscode.tests/src/org/jboss/tools/vscode/java/internal/handlers/NavigateToDefinitionHandlerTest.java <|file_sep|>current/org.jboss.tools.vscode.tests/src/org/jboss/tools/vscode/java/internal/handlers/NavigateToDefinitionHandlerTest.java <|file_sep|>updated/org.jboss.tools.vscode.te...
/******************************************************************************* * Copyright (c) 2016 Red Hat Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is avai...
<|file_sep|>original/org.jboss.tools.vscode.tests/src/org/jboss/tools/vscode/java/internal/handlers/NavigateToDefinitionHandlerTest.java <|file_sep|>current/org.jboss.tools.vscode.tests/src/org/jboss/tools/vscode/java/internal/handlers/NavigateToDefinitionHandlerTest.java <|file_sep|>updated/org.jboss.tools.vscode.te...
a72dc8ddbea48a978f47a76a3ac8f3f3ee8b0cd6
org.jboss.tools.vscode.tests/src/org/jboss/tools/vscode/java/internal/handlers/NavigateToDefinitionHandlerTest.java
org.jboss.tools.vscode.tests/src/org/jboss/tools/vscode/java/internal/handlers/NavigateToDefinitionHandlerTest.java
Java
<|file_sep|>original/app/controllers/thermostats_controller.rb class ThermostatsController < ApplicationController respond_to :html, :json def update @thermostat = Thermostat.find( params[:id] ) @thermostat.update_attributes( thermostat_params ) respond_with @thermostat end private def thermo...
class ThermostatsController < ApplicationController respond_to :html, :json def update @thermostat = Thermostat.find( params[:id] ) @thermostat.update_attributes( thermostat_params ) respond_with @thermostat end private def thermostat_params params.require( :thermostat ).permit( :name, :c...
<|file_sep|>original/app/controllers/thermostats_controller.rb class ThermostatsController < ApplicationController respond_to :html, :json def update @thermostat = Thermostat.find( params[:id] ) @thermostat.update_attributes( thermostat_params ) respond_with @thermostat end private def thermo...
b13cd002eac5e99ea41126047152e18befef8b9d
app/controllers/thermostats_controller.rb
app/controllers/thermostats_controller.rb
Ruby
<|file_sep|>original/.travis.yml language: cpp compiler: - gcc - clang script: make -C tests test <|file_sep|>current/.travis.yml language: cpp compiler: - gcc - clang script: make -C tests test <|file_sep|>updated/.travis.yml
language: cpp matrix: include: - compiler: gcc env: GCC=4.7 - compiler: gcc env: GCC=4.8 - compiler: gcc env: GCC=4.9 - compiler: clang before_install: - if [ -n "$GCC" ]; then sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y; fi - if [ -n "$GCC" ]; then sudo apt-get update...
<|file_sep|>original/.travis.yml language: cpp compiler: - gcc - clang script: make -C tests test <|file_sep|>current/.travis.yml language: cpp compiler: - gcc - clang script: make -C tests test <|file_sep|>updated/.travis.yml language: cpp matrix: include: - compiler: gcc env: GCC=4.7 - compile...
27977cb90cbe6ff1d5176a5c2301e21f2016823a
.travis.yml
.travis.yml
YAML
<|file_sep|>original/README.md # MartinKostadinov.github.io <|file_sep|>current/README.md # MartinKostadinov.github.io <|file_sep|>updated/README.md
# MartinKostadinov.github.io This is the project for my personal webpage. Some of the key features are: * Responsive; * Every section with different Parallax effect; * About me section looks like chat application, with clock showing the current time of visit; * Showcase my projects, with information about them;
<|file_sep|>original/README.md # MartinKostadinov.github.io <|file_sep|>current/README.md # MartinKostadinov.github.io <|file_sep|>updated/README.md # MartinKostadinov.github.io This is the project for my personal webpage. Some of the key features are: * Responsive; * Every section with different Parallax effect; * A...
da3ddeaa6aaa35e2c7a1dee113f18b2cfeaad135
README.md
README.md
Markdown
<|file_sep|>original/appveyor.yml PYTHON_ARCH: "64" SUBLIME_TEXT_VERSION : "3" install: # Prepend newly installed Python to the PATH of this build (this cannot be # done from inside the powershell script as it would require to restart # the parent CMD process). - "SET PATH=%PYTHON%;...
PYTHON_ARCH: "64" SUBLIME_TEXT_VERSION : "3" install: # Prepend newly installed Python to the PATH of this build (this cannot be # done from inside the powershell script as it would require to restart # the parent CMD process). - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - ps...
<|file_sep|>original/appveyor.yml PYTHON_ARCH: "64" SUBLIME_TEXT_VERSION : "3" install: # Prepend newly installed Python to the PATH of this build (this cannot be # done from inside the powershell script as it would require to restart # the parent CMD process). - "SET PATH=%PYTHON%;...
0688e3589d8f5e613055aa8ae6d9107b3103efe6
appveyor.yml
appveyor.yml
YAML
<|file_sep|>original/_posts/2019-09-19-atata.configuration.json-1.2.0-released.md <|file_sep|>current/_posts/2019-09-19-atata.configuration.json-1.2.0-released.md <|file_sep|>updated/_posts/2019-09-19-atata.configuration.json-1.2.0-released.md
--- title: "Atata.Configuration.Json 1.2.0 is Released" description: "Atata.Configuration.Json 1.2.0 is released with support of new Atata configuration properties." release_version: "1.2.0" --- [Atata.Configuration.Json {{page.release_version}}](https://www.nuget.org/packages/Atata.Configuration.Json/{{page.release_v...
<|file_sep|>original/_posts/2019-09-19-atata.configuration.json-1.2.0-released.md <|file_sep|>current/_posts/2019-09-19-atata.configuration.json-1.2.0-released.md <|file_sep|>updated/_posts/2019-09-19-atata.configuration.json-1.2.0-released.md --- title: "Atata.Configuration.Json 1.2.0 is Released" description: "Atat...
8356b263798e54f62cc83794e3d88d8512ff19ca
_posts/2019-09-19-atata.configuration.json-1.2.0-released.md
_posts/2019-09-19-atata.configuration.json-1.2.0-released.md
Markdown
<|file_sep|>original/tests/README.mkd <|file_sep|>current/tests/README.mkd <|file_sep|>updated/tests/README.mkd
# 测试 ## 配置信息 这些单元测试需要提供你在各个平台的用户信息,请按照 [informations.php](informations.php.example) 的格式进行修改。 ## 运行测试 可以使用以下命令来运行测试: ```bash ./vendor/bin/phpunit UnitTest tests/* ```
<|file_sep|>original/tests/README.mkd <|file_sep|>current/tests/README.mkd <|file_sep|>updated/tests/README.mkd # 测试 ## 配置信息 这些单元测试需要提供你在各个平台的用户信息,请按照 [informations.php](informations.php.example) 的格式进行修改。 ## 运行测试 可以使用以下命令来运行测试: ```bash ./vendor/bin/phpunit UnitTest tests/* ```
76dc24aa9e3aa0bf139d68378af9ad5641b98de9
tests/README.mkd
tests/README.mkd
Markdown
<|file_sep|>web/impact/impact/views/general_view_set.py.diff original: updated: model_attribute_calls = [ 'Startup_additional_industries', 'Startup_recommendation_tags', 'StartupLabel_startups', 'RefundCode_programs', 'UserLabel_users', 'Observer_newsletter_cc_roles', 'ExpertProfile_functio...
class GeneralViewSet(LoggingMixin, viewsets.ModelViewSet): permission_classes = ( permissions.IsAuthenticated, DynamicModelPermissions, ) @property def model(self): if self.kwargs['model'] in model_attribute_calls: return apps.get_model( app_label=se...
<|file_sep|>web/impact/impact/views/general_view_set.py.diff original: updated: model_attribute_calls = [ 'Startup_additional_industries', 'Startup_recommendation_tags', 'StartupLabel_startups', 'RefundCode_programs', 'UserLabel_users', 'Observer_newsletter_cc_roles', 'ExpertProfile_functio...
be82f1beac54f46fe9458c3ca26b8e3b786bc9f5
web/impact/impact/views/general_view_set.py
web/impact/impact/views/general_view_set.py
Python
<|file_sep|>original/README.md ```bash composer require becklyn/gluggi-bundle ``` 2. Load the bundle in your `AppKernel` 3. Load the routing in your `routing.yml` or `routing_dev.yml`: ```yml layout: resource: "@BecklynGluggiBundle/Resources/config/routing.yml" prefix: /_layou...
2. Load the bundle in your `AppKernel` 3. Load the routing in your `routing.yml` or `routing_dev.yml`: ```yml layout: resource: "@BecklynGluggiBundle/Resources/config/routing.yml" prefix: /_layout/ ``` Configuration ------------- You can define several config values in your `app/config....
<|file_sep|>original/README.md ```bash composer require becklyn/gluggi-bundle ``` 2. Load the bundle in your `AppKernel` 3. Load the routing in your `routing.yml` or `routing_dev.yml`: ```yml layout: resource: "@BecklynGluggiBundle/Resources/config/routing.yml" prefix: /_layou...
a8764e2c3ca9d55461e71692cbd6718de7e2775f
README.md
README.md
Markdown
<|file_sep|>original/spec/app/page_freshness_spec.rb <|file_sep|>current/spec/app/page_freshness_spec.rb <|file_sep|>updated/spec/app/page_freshness_spec.rb
RSpec.describe PageFreshness do describe "#to_json" do it "returns JSON" do sitemap = double(resources: [ double(url: "/a", data: double(title: "A thing", owner_slack: "#2ndline", review_by: Date.yesterday)), double(url: "/b", data: double(title: "B thing", owner_slack: "#2ndline", review_by...
<|file_sep|>original/spec/app/page_freshness_spec.rb <|file_sep|>current/spec/app/page_freshness_spec.rb <|file_sep|>updated/spec/app/page_freshness_spec.rb RSpec.describe PageFreshness do describe "#to_json" do it "returns JSON" do sitemap = double(resources: [ double(url: "/a", data: double(titl...
56361dcf4d53ac3c4d8f7bc2e5685a1b44a4df6c
spec/app/page_freshness_spec.rb
spec/app/page_freshness_spec.rb
Ruby
<|file_sep|>original/docs/_posts/2017-10-11-version-0.02-release.md <|file_sep|>current/docs/_posts/2017-10-11-version-0.02-release.md <|file_sep|>updated/docs/_posts/2017-10-11-version-0.02-release.md
--- title: Arez 0.02 released type: minor --- Arez 0.02 released. [Full Changelog](https://github.com/realityforge/arez/compare/v0.01...v0.02) Changes in this release: ##### Added * Initial support for adding a `@Repository` to an arez component that will cause the generation of a paired repository for managi...
<|file_sep|>original/docs/_posts/2017-10-11-version-0.02-release.md <|file_sep|>current/docs/_posts/2017-10-11-version-0.02-release.md <|file_sep|>updated/docs/_posts/2017-10-11-version-0.02-release.md --- title: Arez 0.02 released type: minor --- Arez 0.02 released. [Full Changelog](https://github.com/realityforg...
49cca17b005429b213bbfdd4328e1d1f69d46560
docs/_posts/2017-10-11-version-0.02-release.md
docs/_posts/2017-10-11-version-0.02-release.md
Markdown
<|file_sep|>package.json.diff original: "gulp": "3.8.11", updated: "gulp": "3.9.0", <|file_sep|>original/package.json "url": "https://github.com/alemangui/pizzicato/issues" }, "devDependencies": { "gulp": "3.8.11", "gulp-include": "1.1.1", "gulp-jshint": "1.9.2", "gulp-uglify": "1.1.0", "gulp-rename":...
"gulp-include": "1.1.1", "gulp-jshint": "1.9.2", "gulp-uglify": "1.1.0", "gulp-rename": "1.2.0", "jshint-stylish": "1.0.0", "karma": "0.12.31", "karma-jasmine": "0.3.5", "jasmine-core": "2.2.0", "karma-chrome-launcher": "0.1.7" }, "scripts": { "build": "gulp", "test": "gulp test" }, "keywords"...
<|file_sep|>package.json.diff original: "gulp": "3.8.11", updated: "gulp": "3.9.0", <|file_sep|>original/package.json "url": "https://github.com/alemangui/pizzicato/issues" }, "devDependencies": { "gulp": "3.8.11", "gulp-include": "1.1.1", "gulp-jshint": "1.9.2", "gulp-uglify": "1.1.0", "gulp-rename":...
143095aa8a2ae61096be4731eec7473070b407ee
package.json
package.json
JSON
<|file_sep|>original/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb DESCRIPTION = "GStreamer elements to use the Video Processing Engine (VPE) found on some TI devices" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0...
DESCRIPTION = "GStreamer elements to use the Video Processing Engine (VPE) found on some TI devices" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0-plugins-ti.inc PR = "${INC_PR}.15" SRCREV = "3c44b9f4769d8a2b1e3b3441d789a62047c7f940" SRC_URI = "git:...
<|file_sep|>original/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb DESCRIPTION = "GStreamer elements to use the Video Processing Engine (VPE) found on some TI devices" LICENSE = "LGPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24" require gstreamer1.0...
227a56ac337559ec37bd46e954a505afcd15629b
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
BitBake
<|file_sep|>original/README.md **Chinook** is a `Frege` (http://frege-lang.org) port of `SparkJava` http://sparkjava.com for creating web applications with minimum effort. Docs are available at https://januslynd.github.io/chinook Binaries are available at Bintray: repositories { maven { u...
[![Build Status](https://travis-ci.org/januslynd/chinook.svg?branch=master)](https://travis-ci.org/januslynd/chinook) [![Bintray](https://img.shields.io/bintray/v/januslynd/maven/chinook-core.svg?style=flat-square)](https://bintray.com/januslynd/maven/chinook-core/0.1.1) **Chinook** is a `Frege` (http://frege-lang.org...
<|file_sep|>original/README.md **Chinook** is a `Frege` (http://frege-lang.org) port of `SparkJava` http://sparkjava.com for creating web applications with minimum effort. Docs are available at https://januslynd.github.io/chinook Binaries are available at Bintray: repositories { maven { u...
0ffdaa6ccb73b38797ac200720e532ae97ee5afa
README.md
README.md
Markdown
<|file_sep|>original/managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh <|file_sep|>current/managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh <|file_sep|>updated/managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh
#!/bin/bash dotnet ~/src/aspnet-benchmarks/src/BenchmarksDriver/bin/Release/netcoreapp2.1/BenchmarksDriver.dll \ --server $SERVER_URL \ --client $CLIENT_URL \ --no-clean \ --jobs https://raw.githubusercontent.com/brianrob/benchmarks/master/src/Benchmarks/benchmarks.te.mono-fx-aot-app-jit-llvm.json \ ...
<|file_sep|>original/managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh <|file_sep|>current/managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh <|file_sep|>updated/managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh #!/bin/bash dotnet ~/src/aspnet-benchmarks/src/BenchmarksDriver/bin/Relea...
03b2054303a23bbcf2e4325036d93bdceb1f627c
managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh
managed/techempower/commands/run_mono_fx_aot_app_jit_llvm.sh
Shell
<|file_sep|>original/setup.cfg [build_ext] define = SEQAN_HAS_BZIP2,SEQAN_HAS_ZLIB undef = NO_UNIQUE_RC # libraries = z,bz2 ## if using system libraries include-dirs = include:third-party/zlib:third-party/bzip2:third-party/seqan/core/include:third-party/smhasher:third-party/cqf # include-dirs = lib ## if using system l...
[build_ext] define = SEQAN_HAS_BZIP2,SEQAN_HAS_ZLIB undef = NO_UNIQUE_RC # When you update the include directories here also update the paths used in # docker/Dockerfile # libraries = z,bz2 ## if using system libraries include-dirs = include:third-party/zlib:third-party/bzip2:third-party/seqan/core/include:third-party...
<|file_sep|>original/setup.cfg [build_ext] define = SEQAN_HAS_BZIP2,SEQAN_HAS_ZLIB undef = NO_UNIQUE_RC # libraries = z,bz2 ## if using system libraries include-dirs = include:third-party/zlib:third-party/bzip2:third-party/seqan/core/include:third-party/smhasher:third-party/cqf # include-dirs = lib ## if using system l...
f3ab2673adaeaf1fe7726a51609228e7c03379f4
setup.cfg
setup.cfg
INI
<|file_sep|>src/pipeline.pl.diff original: updated: :- ['src/dcg.pl']. <|file_sep|>original/src/pipeline.pl :- ['src/search.pl']. pipeline --> search, " | ", reformat_grep_output. reformat_grep_output --> "cat". <|file_sep|>current/src/pipeline.pl :- ['src/search.pl']. :- ['src/dcg.pl']. pipeline -...
:- ['src/search.pl']. :- ['src/dcg.pl']. pipeline --> search, " | ", reformat_grep_output. reformat_grep_output --> { pattern(Pattern) }, { executable(Exe) }, atom(Exe), " --reformat-grep-output ", atom(Pattern). executable(Exe) :- current_prolog_flag(os_argv, [_Swipl,_Dashx,Exe...
<|file_sep|>src/pipeline.pl.diff original: updated: :- ['src/dcg.pl']. <|file_sep|>original/src/pipeline.pl :- ['src/search.pl']. pipeline --> search, " | ", reformat_grep_output. reformat_grep_output --> "cat". <|file_sep|>current/src/pipeline.pl :- ['src/search.pl']. :- ['src/dcg.pl']. pipeline -...
2f11583a1edfab0bac4fe1425855a3c121ff0848
src/pipeline.pl
src/pipeline.pl
Perl
<|file_sep|>original/templates/default/jobs/scala/integrate/community-build.xml.erb <?xml version='1.0' encoding='UTF-8'?> <project> <%= githubProject( repoUser: @user, repoName: "community-builds", repoRef: @branch, cleanWorkspace: false, description: "Community...
<?xml version='1.0' encoding='UTF-8'?> <project> <%= githubProject( repoUser: @user, repoName: "community-builds", repoRef: @branch, description: "Community Build", nodeRestriction: "public", maxConcurrentPerNode: 1, buildTimeoutMinutes: 400, jvmVersion: ...
<|file_sep|>original/templates/default/jobs/scala/integrate/community-build.xml.erb <?xml version='1.0' encoding='UTF-8'?> <project> <%= githubProject( repoUser: @user, repoName: "community-builds", repoRef: @branch, cleanWorkspace: false, description: "Community...
cdebb488e4c45b142acab487c6178ec383fdf730
templates/default/jobs/scala/integrate/community-build.xml.erb
templates/default/jobs/scala/integrate/community-build.xml.erb
HTML+ERB
<|file_sep|>CHANGELOG.md.diff original: updated: [//]: # "This is how you write comments in markdown." <|file_sep|>CHANGELOG.md.diff original: ==================== updated: ========== <|file_sep|>CHANGELOG.md.diff original: Drake is undergoing continuous development and cannot yet offer a stable, documented API or AB...
### Changed - [#1953][] Replace valuecheckMatrix() with CompareMatrices(). [//]: # "Lost functionality or APIs." ### Removed / Deprecated - None [//]: # "Smaller bug fixes. No API changes." ### Fixes - None v0.9.11 (2015-10-08) -------------------- Changes in version v0.9.11 and before are not provided. <!-...
<|file_sep|>CHANGELOG.md.diff original: updated: [//]: # "This is how you write comments in markdown." <|file_sep|>CHANGELOG.md.diff original: ==================== updated: ========== <|file_sep|>CHANGELOG.md.diff original: Drake is undergoing continuous development and cannot yet offer a stable, documented API or AB...
7be97d9addc35924fd5cc152e2b6d63080c937b0
CHANGELOG.md
CHANGELOG.md
Markdown
<|file_sep|>original/_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md <|file_sep|>current/_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md <|file_sep|>updated/_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md
--- title: "Atata.WebDriverSetup 1.2.0 is Released" description: "Atata.WebDriverSetup 1.2.0 is released with added Chrome version detection for Linux and macOS." release_version: "1.2.0" --- [Atata.WebDriverSetup {{page.release_version}}](https://www.nuget.org/packages/Atata.WebDriverSetup/{{page.release_version}}) i...
<|file_sep|>original/_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md <|file_sep|>current/_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md <|file_sep|>updated/_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md --- title: "Atata.WebDriverSetup 1.2.0 is Released" description: "Atata.WebDriverSetup...
215dc1f6f2daa23107f61b76413bafa193270094
_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md
_posts/2021-07-30-atata.webdriversetup-1.2.0-released.md
Markdown
<|file_sep|>original/source/layouts/layout.erb <%= stylesheet_link_tag 'all' %> <title><%= page_title %></title> </head> <body> <% unless current_page.data.hide_nav %> <nav class="main-nav"> <a href="/"><span class="arrow">←</span> Home</a> </nav> <% end %> <section id="wrap...
<%= stylesheet_link_tag 'all' %> <title><%= page_title %></title> </head> <body> <% unless current_page.data.hide_nav %> <nav class="main-nav"> <a href="/"><span class="arrow">←</span> Home</a> </nav> <% end %> <section id="wrapper"<% unless current_article %> class="home"<%...
<|file_sep|>original/source/layouts/layout.erb <%= stylesheet_link_tag 'all' %> <title><%= page_title %></title> </head> <body> <% unless current_page.data.hide_nav %> <nav class="main-nav"> <a href="/"><span class="arrow">←</span> Home</a> </nav> <% end %> <section id="wrap...
786dd421820e7fffee7f01e73d6dade632bf0edb
source/layouts/layout.erb
source/layouts/layout.erb
HTML+ERB
<|file_sep|>metadata.json.diff original: "source": "https://github.com/puppet-community/puppet-dotnet", "project_page": "https://github.com/puppet-community/puppet-dotnet", "issues_url": "https://github.com/puppet-community/puppet-dotnet/issues", updated: "source": "https://github.com/voxpupuli/pu...
}, { "name": "puppetlabs/powershell", "version_requirement": ">= 1.1.1 < 3.0.0" }, { "name": "liamjbennett/win_facts", "version_requirement": ">= 0.0.2 < 2.0.0" }, { "name": "puppet/download_file", "version_requirement": ">= 2.0.0 < 3.0.0" } ], "requir...
<|file_sep|>metadata.json.diff original: "source": "https://github.com/puppet-community/puppet-dotnet", "project_page": "https://github.com/puppet-community/puppet-dotnet", "issues_url": "https://github.com/puppet-community/puppet-dotnet/issues", updated: "source": "https://github.com/voxpupuli/pu...
bc1eb7be21bf41df70071c00a6f26c71168ebe4a
metadata.json
metadata.json
JSON
<|file_sep|>original/KIBANA.md # Kibana dashboards Folder **kibana** contains sample Kibana objects for quick start. ## Installation Installation is the same as for all [dashboards](https://github.com/elastic/beats-dashboards) from official beats. Download [script](https://github.com/elastic/beats-dashboards/blob/ma...
# Kibana dashboards Folder **kibana** contains sample Kibana objects for quick start. ## Installation Installation is the same as for all [dashboards](https://github.com/elastic/beats-dashboards) from official beats. Download [script](https://github.com/elastic/beats-dashboards/blob/master/load.sh) and place to fold...
<|file_sep|>original/KIBANA.md # Kibana dashboards Folder **kibana** contains sample Kibana objects for quick start. ## Installation Installation is the same as for all [dashboards](https://github.com/elastic/beats-dashboards) from official beats. Download [script](https://github.com/elastic/beats-dashboards/blob/ma...
1b6207ad28d66a91ce08eb6a57a37af51b3a71db
KIBANA.md
KIBANA.md
Markdown
<|file_sep|>original/requirements_dev.txt argparse==1.4.0 bumpversion==0.5.3 coverage==4.3.4 cryptography==1.7.1 flake8==3.2.1 flask==0.12 mock==2.0.0 pip==9.0.1 plumbum==1.6.3 pre-commit==0.9.4 pytest==3.0.6 PyYAML==3.12 Sphinx==1.5.1 tox==2.6.0 watchdog==0.8.3 wheel==0.29.0 <|file_sep|>current/requirements_dev.txt ar...
argparse==1.4.0 bumpversion==0.5.3 coverage==4.3.4 cryptography==1.7.1 flake8==3.3.0 flask==0.12 mock==2.0.0 pip==9.0.1 plumbum==1.6.3 pre-commit==0.9.4 pytest==3.0.6 PyYAML==3.12 Sphinx==1.5.1 tox==2.6.0 watchdog==0.8.3 wheel==0.29.0
<|file_sep|>original/requirements_dev.txt argparse==1.4.0 bumpversion==0.5.3 coverage==4.3.4 cryptography==1.7.1 flake8==3.2.1 flask==0.12 mock==2.0.0 pip==9.0.1 plumbum==1.6.3 pre-commit==0.9.4 pytest==3.0.6 PyYAML==3.12 Sphinx==1.5.1 tox==2.6.0 watchdog==0.8.3 wheel==0.29.0 <|file_sep|>current/requirements_dev.txt ar...
511ddb06654103a37ca326e9620966a808c070cb
requirements_dev.txt
requirements_dev.txt
Text
<|file_sep|>original/docs/reference/friendbot.md | Method | Horizon Endpoint | Param Type | Description | | --- | --- | --- | --- | | `friendbot("address")` | | `string` | Funds the new account with the given address. Fails if account is already funded. | | `.call()` | | | Triggers a HTTP Request to the Horizon serve...
| Method | Horizon Endpoint | Param Type | Description | | --- | --- | --- | --- | | `friendbot("address")` | | `string` | Funds the new account with the given address. Fails if account is already funded. | | `.call()` | | | Triggers a HTTP Request to the Horizon server based on the builder's current configuration. ...
<|file_sep|>original/docs/reference/friendbot.md | Method | Horizon Endpoint | Param Type | Description | | --- | --- | --- | --- | | `friendbot("address")` | | `string` | Funds the new account with the given address. Fails if account is already funded. | | `.call()` | | | Triggers a HTTP Request to the Horizon serve...
604e955b20b258b6fc5a5155f7dee3bf7305bd49
docs/reference/friendbot.md
docs/reference/friendbot.md
Markdown
<|file_sep|>public/js/poem/edit.js.diff original: updated: var lineTextInput = poemContainer.find('.line-text'); <|file_sep|>public/js/poem/edit.js.diff original: $(document).scrollTop($(document).attr('height')); updated: $(document).scrollTop($(document).height()); lineTextInput.focus(); <|file_sep|>or...
var linesContainer = $('#lines'); var lineTextInput = poemContainer.find('.line-text'); socket.on('line-created-for-poem-' + poemId, function(poemLine) { $('<div/>', { 'class': 'line', 'text': poemLine.text }).appendTo(linesContainer); $(document).scrollTop($(document).height()); line...
<|file_sep|>public/js/poem/edit.js.diff original: updated: var lineTextInput = poemContainer.find('.line-text'); <|file_sep|>public/js/poem/edit.js.diff original: $(document).scrollTop($(document).attr('height')); updated: $(document).scrollTop($(document).height()); lineTextInput.focus(); <|file_sep|>or...
0abf40565b8a49b58c7bcee36d6a19d7799d888e
public/js/poem/edit.js
public/js/poem/edit.js
JavaScript
<|file_sep|>rumplestiltskin.js.diff original: updated: var out = ''; <|file_sep|>original/rumplestiltskin.js var isArray = Array.isArray; exports.emaNeurt = function emaNeurt(o) { return exports.trueName(o, '\u202e'); }; exports.trueName = function trueName(obj, salt) { var t = (typeof obj)[0]; var out = salt ?...
var isArray = Array.isArray; exports.emaNeurt = function emaNeurt(o) { return exports.trueName(o, '\u202e'); }; exports.trueName = function trueName(obj, salt) { var t = (typeof obj)[0]; var out = ''; if (salt) { if (typeof salt === 'object') { salt = salt.valueOf(); } if (typeof salt !== 'string') { ...
<|file_sep|>rumplestiltskin.js.diff original: updated: var out = ''; <|file_sep|>original/rumplestiltskin.js var isArray = Array.isArray; exports.emaNeurt = function emaNeurt(o) { return exports.trueName(o, '\u202e'); }; exports.trueName = function trueName(obj, salt) { var t = (typeof obj)[0]; var out = salt ?...
a96f74e2d80b7363a519206e9679932afed6a936
rumplestiltskin.js
rumplestiltskin.js
JavaScript
<|file_sep|>original/server/models/vote.accessors.js const db = require('./postgresql'); const { plainObject, plainObjectOrNull, deprecateObject } = require('./utils'); const Vote = db.sequelize.models.vote; function getVotes(question) { deprecateObject(question); const issueId = question.id || question; return...
const db = require('./postgresql'); const { plainObject, plainObjectOrNull, deprecateObject } = require('./utils'); const Vote = db.sequelize.models.vote; function getVotes(question) { deprecateObject(question); const issueId = question.id || question; return Vote.findAll({ where: { issueId }, order: ['...
<|file_sep|>original/server/models/vote.accessors.js const db = require('./postgresql'); const { plainObject, plainObjectOrNull, deprecateObject } = require('./utils'); const Vote = db.sequelize.models.vote; function getVotes(question) { deprecateObject(question); const issueId = question.id || question; return...
56054c20ec1b4daa56d75e866a4d3e9c49f336f3
server/models/vote.accessors.js
server/models/vote.accessors.js
JavaScript
<|file_sep|>original/gradle.properties gormVersion=7.1.0.M4 slf4jVersion=1.7.29 servletApiVersion=4.0.1 groovyVersion=3.0.7 springBootVersion=2.4.0 springVersion=5.3.2 h2Version=1.4.200 hibernate5Version=5.4.10.Final hibernateValidatorVersion=6.0.18.Final pluginGrailsVersion=4.1.0.BUILD-SNAPSHOT tomcatVersion=8.5.0 sna...
gormVersion=7.1.0.M4 slf4jVersion=1.7.29 servletApiVersion=4.0.1 groovyVersion=3.0.7 springBootVersion=2.4.1 springVersion=5.3.2 h2Version=1.4.200 hibernate5Version=5.4.10.Final hibernateValidatorVersion=6.0.18.Final pluginGrailsVersion=4.1.0.BUILD-SNAPSHOT tomcatVersion=8.5.0 snakeyamlVersion=1.23 jaxbVersion=2.3.1 ja...
<|file_sep|>original/gradle.properties gormVersion=7.1.0.M4 slf4jVersion=1.7.29 servletApiVersion=4.0.1 groovyVersion=3.0.7 springBootVersion=2.4.0 springVersion=5.3.2 h2Version=1.4.200 hibernate5Version=5.4.10.Final hibernateValidatorVersion=6.0.18.Final pluginGrailsVersion=4.1.0.BUILD-SNAPSHOT tomcatVersion=8.5.0 sna...
996439575f57d37500c38ba73386d7051aa2d986
gradle.properties
gradle.properties
INI
<|file_sep|>CMakeExternals/MITKData.cmake.diff original: set(revision_tag da5dd4ff) # first 8 characters of hash-tag updated: # set(revision_tag da5dd4ff) # first 8 characters of hash-tag <|file_sep|>original/CMakeExternals/MITKData.cmake set(MITK-Data_DEPENDS ${proj}) if(BUILD_TESTING) set(revision_tag da5dd4ff)...
set(MITK-Data_DEPENDS ${proj}) if(BUILD_TESTING) # set(revision_tag da5dd4ff) # first 8 characters of hash-tag # ^^^^^^^^ these are just to check correct length of hash part ExternalProject_Add(${proj} SOURCE_DIR ${proj} GIT_REPOSITORY https://phabricator.mitk.org/source/mitkdata.git # ...
<|file_sep|>CMakeExternals/MITKData.cmake.diff original: set(revision_tag da5dd4ff) # first 8 characters of hash-tag updated: # set(revision_tag da5dd4ff) # first 8 characters of hash-tag <|file_sep|>original/CMakeExternals/MITKData.cmake set(MITK-Data_DEPENDS ${proj}) if(BUILD_TESTING) set(revision_tag da5dd4ff)...
ca60277132eac370f4faa4c4c4efe54c9a1280bd
CMakeExternals/MITKData.cmake
CMakeExternals/MITKData.cmake
CMake
<|file_sep|>packages/po/polysemy-uncontrolled.yaml.diff original: hash: a149fe0974d880639098aaaa42a4e0b5faa67e22c7205d2608dfb8aff2b64df1 updated: hash: a6a9e36c5cddbc7264f4abb764d848eaa6b131aff96fe67de47f581d1fd8d856 <|file_sep|>packages/po/polysemy-uncontrolled.yaml.diff original: updated: ## v0.1.1.0 * Remove d...
## v0.1.0.0 * An insane way to represent evil side effects in polysemy. basic-deps: base: '>=4.7 && <4.16' polysemy-methodology: '>=0.2.1.0 && <0.3' polysemy: '>=1.3.0.0 && <1.7' all-versions: - 0.1.0.0 - 0.1.1.0 author: Daniel Firth latest: 0.1.1.0 description-type: markdown description: | # polysemy-unco...
<|file_sep|>packages/po/polysemy-uncontrolled.yaml.diff original: hash: a149fe0974d880639098aaaa42a4e0b5faa67e22c7205d2608dfb8aff2b64df1 updated: hash: a6a9e36c5cddbc7264f4abb764d848eaa6b131aff96fe67de47f581d1fd8d856 <|file_sep|>packages/po/polysemy-uncontrolled.yaml.diff original: updated: ## v0.1.1.0 * Remove d...
88f932165fe6aacd45acbe96a1714c26f1457400
packages/po/polysemy-uncontrolled.yaml
packages/po/polysemy-uncontrolled.yaml
YAML
<|file_sep|>original/.github/workflows/maven.yml <|file_sep|>current/.github/workflows/maven.yml <|file_sep|>updated/.github/workflows/maven.yml
name: Maven CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' ...
<|file_sep|>original/.github/workflows/maven.yml <|file_sep|>current/.github/workflows/maven.yml <|file_sep|>updated/.github/workflows/maven.yml name: Maven CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/chec...
a6ab954841e08c3ce8a3bc83889f59efd4fcc7bb
.github/workflows/maven.yml
.github/workflows/maven.yml
YAML
<|file_sep|>original/.travis.yml language: python python: - "2.7" install: - pip install -r requirements.txt - pip install -r test_requirements.txt - pip install coveralls script: - py.test after_success: - coveralls <|file_sep|>current/.travis.yml language: python python: - "2.7" instal...
language: python python: - "3.9" install: - pip install -r requirements.txt - pip install -r test_requirements.txt - pip install coveralls script: - py.test after_success: - coveralls
<|file_sep|>original/.travis.yml language: python python: - "2.7" install: - pip install -r requirements.txt - pip install -r test_requirements.txt - pip install coveralls script: - py.test after_success: - coveralls <|file_sep|>current/.travis.yml language: python python: - "2.7" instal...
9cec35697c481c1a52f1cac17937655fa9fad579
.travis.yml
.travis.yml
YAML
<|file_sep|>original/ikea-ota-download.py try: from urllib.request import urlopen, urlretrieve except ImportError: from urllib2 import urlopen from urllib import urlretrieve f = urlopen("http://fw.ota.homesmart.ikea.net/feed/version_info.json") data = f.read() arr = json.loads(data) otapath = '%s/otau' % os.path...
try: from urllib.request import urlopen, urlretrieve except ImportError: from urllib2 import urlopen from urllib import urlretrieve f = urlopen("http://fw.ota.homesmart.ikea.net/feed/version_info.json") data = f.read() arr = json.loads(data.decode('utf-8')) otapath = '%s/otau' % os.path.expanduser('~') if not o...
<|file_sep|>original/ikea-ota-download.py try: from urllib.request import urlopen, urlretrieve except ImportError: from urllib2 import urlopen from urllib import urlretrieve f = urlopen("http://fw.ota.homesmart.ikea.net/feed/version_info.json") data = f.read() arr = json.loads(data) otapath = '%s/otau' % os.path...
5e5f5c8bfb5b61bd87ff4e55004e80c0e7edf408
ikea-ota-download.py
ikea-ota-download.py
Python
<|file_sep|>original/base/scoped_handle.h // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_SCOPED_HANDLE_H_ #define BASE_SCOPED_HANDLE_H_ #include "base/basictypes.h" #if defined(...
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_SCOPED_HANDLE_H_ #define BASE_SCOPED_HANDLE_H_ #include <stdio.h> #include "base/basictypes.h" #if defined(OS_WIN) #include "base...
<|file_sep|>original/base/scoped_handle.h // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef BASE_SCOPED_HANDLE_H_ #define BASE_SCOPED_HANDLE_H_ #include "base/basictypes.h" #if defined(...
4d2173704ae6884eaab3e9f702fb910bfb84c30d
base/scoped_handle.h
base/scoped_handle.h
C
<|file_sep|>original/README.rdoc == Blinder This is a work in progress! Of course, what isn't? Essentially, I wanna use this textbook Rails app to handle RFP collections for SCRC. At some point, I'll have to write a _real_ README. == TODO * Add validation for Responses. * Add OAUTH-y layer for controlling/configurin...
== Blinder This is a work in progress! Of course, what isn't? Essentially, I wanna use this textbook Rails app to handle RFP collections for SCRC. At some point, I'll have to write a _real_ README. == TODO * Add validation for Responses. * Add OAUTH-y layer for controlling/configuring/accessing the app. * Style the ...
<|file_sep|>original/README.rdoc == Blinder This is a work in progress! Of course, what isn't? Essentially, I wanna use this textbook Rails app to handle RFP collections for SCRC. At some point, I'll have to write a _real_ README. == TODO * Add validation for Responses. * Add OAUTH-y layer for controlling/configurin...
51e558678c6501add320a0931e071c86a481067b
README.rdoc
README.rdoc
RDoc
<|file_sep|>tox.ini.diff original: ignore = F403,E402,F405,N804 updated: ignore = E501,F403,E402,F405,N804 <|file_sep|>original/tox.ini [flake8] ignore = F403,E402,F405,N804 exclude = ChatExchange/*,.idea/*,.git/* max-line-length = 120 <|file_sep|>current/tox.ini [flake8] ignore = E501,F403,E402,F405,N804 exclude = Cha...
[flake8] ignore = E501,F403,E402,F405,N804 exclude = ChatExchange/*,.idea/*,.git/*
<|file_sep|>tox.ini.diff original: ignore = F403,E402,F405,N804 updated: ignore = E501,F403,E402,F405,N804 <|file_sep|>original/tox.ini [flake8] ignore = F403,E402,F405,N804 exclude = ChatExchange/*,.idea/*,.git/* max-line-length = 120 <|file_sep|>current/tox.ini [flake8] ignore = E501,F403,E402,F405,N804 exclude = Cha...
d8dfd0c9d135432bbb667ed999fdbab88920b090
tox.ini
tox.ini
INI
<|file_sep|>original/src/App.js import React from 'react'; import Paper from 'material-ui/lib/paper'; export default class App extends React.Component { render() { return ( <div style={{ width: '960px', margin: '1em auto' }}> <Paper zDepth={2} style={{ padding: '1em' }}> <p>hello world</p...
import React from 'react'; import Paper from 'material-ui/lib/paper'; export default class App extends React.Component { render() { return ( <div style={{ padding: '1em' }}> <Paper zDepth={2} style={{ padding: '1em' }}> <p>hello world</p> </Paper> </div> ); } }
<|file_sep|>original/src/App.js import React from 'react'; import Paper from 'material-ui/lib/paper'; export default class App extends React.Component { render() { return ( <div style={{ width: '960px', margin: '1em auto' }}> <Paper zDepth={2} style={{ padding: '1em' }}> <p>hello world</p...
af780d5a721eaecb830d32ba0d961ec42794eb2e
src/App.js
src/App.js
JavaScript
<|file_sep|>original/experimental/cloudbuild.yaml -s ${_SA_NAME} - id: "check" name: python:3.9-slim entrypoint: /bin/bash args: - "-c" - | python -m pip install -r .util/requirements.txt .util/helper check-deploy ${_CI_PROJECT} pytest - id: "destroy" ...
-s ${_SA_NAME} - id: "check" name: python:3.9-slim entrypoint: /bin/bash args: - "-c" - | python -m pip install -r .util/requirements.txt .util/helper check-deploy ${_CI_PROJECT} - id: "destroy" name: "gcr.io/google.com/cloudsdktool/cloud-sdk:slim" entrypo...
<|file_sep|>original/experimental/cloudbuild.yaml -s ${_SA_NAME} - id: "check" name: python:3.9-slim entrypoint: /bin/bash args: - "-c" - | python -m pip install -r .util/requirements.txt .util/helper check-deploy ${_CI_PROJECT} pytest - id: "destroy" ...
275f021fd6e354e09d90814b946e806cb04bf6cf
experimental/cloudbuild.yaml
experimental/cloudbuild.yaml
YAML
<|file_sep|>original/packages/un/units-attoparsec.yaml <|file_sep|>current/packages/un/units-attoparsec.yaml <|file_sep|>updated/packages/un/units-attoparsec.yaml
homepage: https://github.com/jcristovao/units-attoparsec changelog-type: '' hash: c6b7a5fb7f1ba791bd8e0b6f51927eed0a0d69eeca3adf5e898731595f1ceaa3 test-bench-deps: {} maintainer: João Cristóvão <jmacristovao@gmail.com> synopsis: Attoparsec parsers for the units package changelog: '' basic-deps: base: ! '>=4.7 && <5' ...
<|file_sep|>original/packages/un/units-attoparsec.yaml <|file_sep|>current/packages/un/units-attoparsec.yaml <|file_sep|>updated/packages/un/units-attoparsec.yaml homepage: https://github.com/jcristovao/units-attoparsec changelog-type: '' hash: c6b7a5fb7f1ba791bd8e0b6f51927eed0a0d69eeca3adf5e898731595f1ceaa3 test-ben...
2b10fe2be7e1174442533d0836220b65ea0067e7
packages/un/units-attoparsec.yaml
packages/un/units-attoparsec.yaml
YAML
<|file_sep|>src/query/functions/FilterScoreFunction.js.diff original: _common = ejs.ScoreFunctionMixin(), func = _common.toJSON(); updated: _common = ejs.ScoreFunctionMixin(); <|file_sep|>src/query/functions/FilterScoreFunction.js.diff original: if ((filter == null || !isFilter(filter)) || weight ...
@borrows ejs.ScoreFunctionMixin._type as _type @borrows ejs.ScoreFunctionMixin.toJSON as toJSON @desc <p>Randomly score documents.</p> */ ejs.FilterScoreFunction = function (filter, weight) { var _common = ejs.ScoreFunctionMixin(); if (filter == null || weight == null) { th...
<|file_sep|>src/query/functions/FilterScoreFunction.js.diff original: _common = ejs.ScoreFunctionMixin(), func = _common.toJSON(); updated: _common = ejs.ScoreFunctionMixin(); <|file_sep|>src/query/functions/FilterScoreFunction.js.diff original: if ((filter == null || !isFilter(filter)) || weight ...
f386dca01e48fb596183256945d55d9a69ea05c0
src/query/functions/FilterScoreFunction.js
src/query/functions/FilterScoreFunction.js
JavaScript
<|file_sep|>original/requirements.txt cffi==1.11.5 celery==3.1.25 # pyup: <4 docopt==0.6.2 Flask-Bcrypt==0.7.1 Flask-Marshmallow==0.8.0 Flask-Migrate==2.1.1 Flask-SQLAlchemy==2.3.2 Flask==0.12.2 click-datetime==0.2 eventlet==0.22.1 gunicorn==19.7.1 iso8601==0.1.12 jsonschema==2.6.0 marshmallow-sqlalchemy==0.13.2 marshm...
cffi==1.11.5 celery==3.1.26.post2 # pyup: <4 docopt==0.6.2 Flask-Bcrypt==0.7.1 Flask-Marshmallow==0.8.0 Flask-Migrate==2.1.1 Flask-SQLAlchemy==2.3.2 Flask==0.12.2 click-datetime==0.2 eventlet==0.22.1 gunicorn==19.7.1 iso8601==0.1.12 jsonschema==2.6.0 marshmallow-sqlalchemy==0.13.2 marshmallow==2.15.0 monotonic==1.4 psy...
<|file_sep|>original/requirements.txt cffi==1.11.5 celery==3.1.25 # pyup: <4 docopt==0.6.2 Flask-Bcrypt==0.7.1 Flask-Marshmallow==0.8.0 Flask-Migrate==2.1.1 Flask-SQLAlchemy==2.3.2 Flask==0.12.2 click-datetime==0.2 eventlet==0.22.1 gunicorn==19.7.1 iso8601==0.1.12 jsonschema==2.6.0 marshmallow-sqlalchemy==0.13.2 marshm...
296c4d30ffd95b49f3f8531ffecbf89b16c0ca48
requirements.txt
requirements.txt
Text
<|file_sep|>original/requirements.txt ete3==3.1.1 wheel==0.30.0 bitarray==0.8.1 psutil==5.6.6 pysam==0.13 scipy==1.0.0 six==1.11.0 <|file_sep|>current/requirements.txt ete3==3.1.1 wheel==0.30.0 bitarray==0.8.1 psutil==5.6.6 pysam==0.13 scipy==1.0.0 six==1.11.0 <|file_sep|>updated/requirements.txt
ete3==3.1.2 wheel==0.30.0 bitarray==0.8.1 psutil==5.6.6 pysam==0.13 scipy==1.0.0 six==1.11.0
<|file_sep|>original/requirements.txt ete3==3.1.1 wheel==0.30.0 bitarray==0.8.1 psutil==5.6.6 pysam==0.13 scipy==1.0.0 six==1.11.0 <|file_sep|>current/requirements.txt ete3==3.1.1 wheel==0.30.0 bitarray==0.8.1 psutil==5.6.6 pysam==0.13 scipy==1.0.0 six==1.11.0 <|file_sep|>updated/requirements.txt ete3==3.1.2 wheel==0.3...
32b86314d1805264a617f75081b326a5efe25266
requirements.txt
requirements.txt
Text
<|file_sep|>original/.github/workflows/automerge.yml <|file_sep|>current/.github/workflows/automerge.yml <|file_sep|>updated/.github/workflows/automerge.yml
name: automerge on: pull_request: types: - edited - labeled - opened - ready_for_review - reopened - synchronize - unlabeled - unlocked pull_request_review: types: - submitted check_suite: types: - completed status: {} jobs: automerge:
<|file_sep|>original/.github/workflows/automerge.yml <|file_sep|>current/.github/workflows/automerge.yml <|file_sep|>updated/.github/workflows/automerge.yml name: automerge on: pull_request: types: - edited - labeled - opened - ready_for_review - reopened - synchronize ...
17c5735fae70d9ed49b71255a5e7821ccc4c626d
.github/workflows/automerge.yml
.github/workflows/automerge.yml
YAML
<|file_sep|>original/lib/ng-store.js return through.obj(_register); function _register(file, enc, done) { var uniqueId = file.data.dirname + '.' + file.data.name; if (!store[uniqueId]) { store[uniqueId] = file.data; } //Override if more specific if (store[u...
return through.obj(_register); function _register(file, enc, done) { var uniqueId = file.data.dirname + '.' + file.data.name; if (!store[uniqueId]) { store[uniqueId] = file.data; } //Override if more specific if (store[uniqueId].path.length < file.data.path...
<|file_sep|>original/lib/ng-store.js return through.obj(_register); function _register(file, enc, done) { var uniqueId = file.data.dirname + '.' + file.data.name; if (!store[uniqueId]) { store[uniqueId] = file.data; } //Override if more specific if (store[u...
0491461c435c2a8f4956ef3cdf3a7af3e026b6af
lib/ng-store.js
lib/ng-store.js
JavaScript
<|file_sep|>original/package.json }, "repository": { "type": "git", "url": "https://github.com/jirwin/treslek-spotify.git" }, "keywords": [ "treslek", "irc", "spotify" ], "author": "Justin Gallardo <justin.gallardo@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.c...
}, "repository": { "type": "git", "url": "https://github.com/jirwin/treslek-spotify.git" }, "keywords": [ "treslek", "irc", "spotify" ], "authors": [ "Kevin Purdy <purdyk@gmail.com>", "Justin Gallardo <justin.gallardo@gmail.com>" ], "license": "MIT", "bugs": { "url": "h...
<|file_sep|>original/package.json }, "repository": { "type": "git", "url": "https://github.com/jirwin/treslek-spotify.git" }, "keywords": [ "treslek", "irc", "spotify" ], "author": "Justin Gallardo <justin.gallardo@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.c...
e0102540c179667398438dd8346ae91be58c75ac
package.json
package.json
JSON
<|file_sep|>original/.travis.yml # http://www.apache.org/licenses/LICENSE-2.0 # # 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 t...
# # 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. l...
<|file_sep|>original/.travis.yml # http://www.apache.org/licenses/LICENSE-2.0 # # 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 t...
ba775ca808253d7fa64d5243dca076a3eb15c857
.travis.yml
.travis.yml
YAML
<|file_sep|>original/deleteVM.sh #!/bin/bash . "./configuration.sh" if [ -z "$1" ]; then echo "ERROR: You have to specify the ID of the server to delete." echo "Usage: $0 <id>" exit 1 fi echo "Deleting the server $ID ..." nova delete $ID <|file_sep|>current/deleteVM.sh #!/bin/bash . "./confi...
#!/bin/bash . "./configuration.sh" if [ -z "$1" ]; then echo "ERROR: You have to specify the ID of the server to delete." echo "Usage: $0 <id>" exit 1 fi for ID in $@ do echo "Deleting the server $ID ..." nova delete $ID done
<|file_sep|>original/deleteVM.sh #!/bin/bash . "./configuration.sh" if [ -z "$1" ]; then echo "ERROR: You have to specify the ID of the server to delete." echo "Usage: $0 <id>" exit 1 fi echo "Deleting the server $ID ..." nova delete $ID <|file_sep|>current/deleteVM.sh #!/bin/bash . "./confi...
387c5c6dfc0085f70dd69863c5846f5d4d42a9b5
deleteVM.sh
deleteVM.sh
Shell
<|file_sep|>src/Booma.Proxy.Client.Unity.Ship/Handlers/Command/6D/Default6DCommandHandler.cs.diff original: updated: //TODO: Only 3/4 of these are static. The 0x70 is player specific and we should expect N of them where N is the player number. <|file_sep|>original/src/Booma.Proxy.Client.Unity.Ship/Handlers/Command/...
} /// <inheritdoc /> protected override async Task HandleSubMessage(IPeerMessageContext<PSOBBGamePacketPayloadClient> context, UnknownSubCommand6DCommand command) { if(Logger.IsInfoEnabled) Logger.Info($"Recieved Unknown: {command}"); //TODO: Only 3/4 of these are static. The 0x70 is player specific...
<|file_sep|>src/Booma.Proxy.Client.Unity.Ship/Handlers/Command/6D/Default6DCommandHandler.cs.diff original: updated: //TODO: Only 3/4 of these are static. The 0x70 is player specific and we should expect N of them where N is the player number. <|file_sep|>original/src/Booma.Proxy.Client.Unity.Ship/Handlers/Command/...
50a5e0944e56fe194114ccaa97587c99083d1bd2
src/Booma.Proxy.Client.Unity.Ship/Handlers/Command/6D/Default6DCommandHandler.cs
src/Booma.Proxy.Client.Unity.Ship/Handlers/Command/6D/Default6DCommandHandler.cs
C#
<|file_sep|>original/README.md PyGlow ====== Python class for the awesome Pimoroni PiGlow for the Raspberry Pi: http://shop.pimoroni.com/products/piglow Based on the helpful example from their repo: https://github.com/pimoroni/piglow See the bottom of pyglow.py for a usage example. <|file_sep|>current/README.md Py...
====== Python class for the awesome Pimoroni PiGlow for the Raspberry Pi: http://shop.pimoroni.com/products/piglow Based on the helpful example from their repo: https://github.com/pimoroni/piglow See the bottom of `pyglow.py` for a usage example, but basically: import pyglow import time p = pyglow.Py...
<|file_sep|>original/README.md PyGlow ====== Python class for the awesome Pimoroni PiGlow for the Raspberry Pi: http://shop.pimoroni.com/products/piglow Based on the helpful example from their repo: https://github.com/pimoroni/piglow See the bottom of pyglow.py for a usage example. <|file_sep|>current/README.md Py...
c68e2f67c4b86290dedcda92171fffb24ba29cfd
README.md
README.md
Markdown
<|file_sep|>original/app/spreat/views/main.scala.html @(greeting:String) <html> <head> <title>Spreat - @greeting</title> </head> <body> <h1>@greeting</h1> <p>Spreat is a strategy game for two players.</p> </body> </html> <|file_sep|>current/app/spreat/views/main.scala.html @(greeting:String) <html> <head> <title>Spre...
@(greeting:String) <html> <head> <title>Spreat - @greeting</title> </head> <body> <h1>@greeting</h1> <p>Spreat is a strategy game for two players.</p> <svg width="100" height="100"> <circle cx="50" cy="50" r="40" stroke="green" stroke-width="4" fill="yellow" onclick="makeBlue(this)" /> </svg> <script> fun...
<|file_sep|>original/app/spreat/views/main.scala.html @(greeting:String) <html> <head> <title>Spreat - @greeting</title> </head> <body> <h1>@greeting</h1> <p>Spreat is a strategy game for two players.</p> </body> </html> <|file_sep|>current/app/spreat/views/main.scala.html @(greeting:String) <html> <head> <title>Spre...
2d58e7167edd0d416fa65603e9e48b2a74776e26
app/spreat/views/main.scala.html
app/spreat/views/main.scala.html
HTML